:root {
	--bf-gold: #af9158;
	--bf-gold-light: #d8c09c;
	--bf-gold-accent: #b89968;
	--bf-gray-dark: #434549;
	--bf-blue: #198fd9;
	--bf-silver: #c4c4c4;
	--bf-dark: #1d1d1b;
	--bf-text: #212326;
	--bf-heading: #000000;
	--bf-bg: #ffffff;
	--bf-bg-alt: #f4f4f4;
	--bf-container: 1248px;
	--bf-gutter: clamp(16px, 4vw, 24px);
	--bf-header-height: 110px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Poppins, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.72;
	color: var(--bf-text);
	background: var(--bf-bg);
}

body.bf-fullwidth {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--bf-gold);
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--bf-silver);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bf-skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: #fff;
	color: #000;
	clip: auto;
}

.bf-container {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin-inline: auto;
}

.bf-main {
	min-height: 50vh;
}

.bf-content {
	padding: 0 0 40px;
}

.bf-content--fullwidth,
.bf-fullwidth .bf-content {
	width: 100%;
	max-width: none;
	padding: 0;
}

/* Keep normal page containers centered even if body has bf-fullwidth (wrong page template meta). */
.bf-fullwidth .bf-container.bf-content {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	max-width: var(--bf-container);
	margin-inline: auto;
	padding: 0 0 40px;
}

h1 {
	font-family: Poppins, Arial, sans-serif;
	font-size: 64px;
	font-weight: 400;
	color: var(--bf-heading);
	line-height: 1.15;
}

h2 {
	font-family: Poppins, Arial, sans-serif;
	font-size: 48px;
	font-weight: 400;
	color: var(--bf-heading);
	line-height: 1.2;
}

h3 {
	font-family: Poppins, Arial, sans-serif;
	font-size: 36px;
	font-weight: 400;
	color: var(--bf-heading);
	line-height: 1.25;
}

h4 {
	font-family: Poppins, Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--bf-heading);
	line-height: 1.3;
}

.bf-page__title,
.bf-article__title {
	color: var(--bf-heading);
	font-size: 48px;
	font-weight: 400;
	margin: 0 0 24px;
}

/* Blog-Einzelbeitrag (Avada-Parität) */
.bf-content--article {
	padding-top: 24px;
}

.bf-article__nav {
	margin-bottom: 20px;
}

.bf-article__nav-link {
	color: var(--bf-gold);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.bf-article__nav-link:hover {
	color: var(--bf-dark);
}

.bf-article__thumb {
	margin: 0 0 28px;
}

.bf-article__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.bf-article__thumb-link {
	display: block;
	line-height: 0;
}

.bf-article__header {
	margin-bottom: 20px;
}

.bf-article__body.entry-content {
	font-size: 16px;
	line-height: 1.72;
	color: var(--bf-text);
}

.bf-article__body.entry-content h2 {
	margin: 32px 0 16px;
}

.bf-article__body.entry-content h3 {
	margin: 28px 0 14px;
}

.bf-article__body.entry-content blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--bf-gold);
	background: #f9f6f0;
}

.bf-article__body.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.bf-article__footer {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bf-article__meta-footer {
	margin-bottom: 24px;
	font-size: 14px;
	color: rgba(29, 29, 27, 0.75);
}

.bf-article__meta-footer a {
	color: var(--bf-gold);
	text-decoration: none;
}

.bf-article__meta-footer a:hover {
	text-decoration: underline;
}

.bf-article__meta-sep {
	color: rgba(29, 29, 27, 0.35);
}

.bf-article__share {
	padding: 24px;
	background: #f5f5f5;
}

.bf-article__share-title {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	color: var(--bf-dark);
}

.bf-article__share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bf-article__share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bf-gold);
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.bf-article__share-link:hover {
	background: var(--bf-dark);
	color: #fff;
}

.bf-related-posts {
	margin-top: 48px;
}

.bf-related-posts__title {
	margin: 0 0 24px;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	color: var(--bf-dark);
}

.bf-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.bf-related-posts__thumb {
	display: block;
	margin-bottom: 12px;
	overflow: hidden;
}

.bf-related-posts__thumb img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.25s ease;
}

.bf-related-posts__thumb:hover img {
	transform: scale(1.03);
}

.bf-related-posts__item-title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.bf-related-posts__item-title a {
	color: var(--bf-dark);
	text-decoration: none;
}

.bf-related-posts__item-title a:hover {
	color: var(--bf-gold);
}

.bf-related-posts__date {
	margin: 0;
	font-size: 13px;
	color: rgba(29, 29, 27, 0.6);
}

@media (max-width: 1024px) {
	.bf-related-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bf-related-posts__grid {
		grid-template-columns: 1fr;
	}
}

/* Blog: Magazin / Rezept / Wissen */
.bf-article__kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bf-gold);
}

.bf-content--rezept .bf-article__title,
.bf-content--wissen .bf-article__title {
	font-size: 48px;
}

.bf-recipe-card {
	margin: 24px 0 32px;
	padding: 28px 32px;
	background: #f9f6f0;
	border-left: 4px solid var(--bf-gold);
}

.bf-recipe-card__lead {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 600;
	color: var(--bf-dark);
}

.bf-recipe-card__body {
	font-size: 17px;
	line-height: 1.75;
}

.bf-recipe-card__body strong {
	color: var(--bf-dark);
}

.bf-content--archive {
	padding-top: 32px;
	padding-bottom: 48px;
}

.bf-archive__title {
	margin: 0 0 24px;
	font-size: clamp(28px, 3vw, 40px);
}

.bf-blog-grid--archive {
	margin-bottom: 40px;
}

.bf-blog-item__kind {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bf-gold);
}

.bf-blog-item__date {
	margin: 8px 0 0;
	font-size: 13px;
	color: rgba(29, 29, 27, 0.55);
}

.bf-pagination {
	margin-top: 24px;
	text-align: center;
}

.bf-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.bf-pagination a,
.bf-pagination span {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: var(--bf-dark);
}

.bf-pagination .current {
	background: var(--bf-gold);
	border-color: var(--bf-gold);
	color: #fff;
}

/* Rezept-Bibliothek (Avada av_* → Barflow) */
.bf-page--fullwidth .entry-content {
	padding-bottom: 48px;
}

.bf-recipe-hero {
	position: relative;
	margin: 0 0 0;
	overflow: hidden;
	background: #1d1d1b;
}

.bf-recipe-hero__slides {
	position: relative;
	min-height: clamp(280px, 42vw, 520px);
}

.bf-recipe-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.bf-recipe-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.bf-recipe-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bf-recipe-hero__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px clamp(20px, 4vw, 48px) 72px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
	color: #fff;
}

.bf-recipe-hero__title {
	margin: 0 0 8px;
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 700;
}

.bf-recipe-hero__text {
	margin: 0;
	font-size: clamp(15px, 2vw, 18px);
	opacity: 0.92;
}

.bf-recipe-hero__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bf-recipe-hero__tab {
	flex: 1 1 0;
	min-width: 120px;
	padding: 14px 12px;
	border: 0;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	color: #808080;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.bf-recipe-hero__tab:last-child {
	border-right: 0;
}

.bf-recipe-hero__tab.is-active,
.bf-recipe-hero__tab:hover {
	background: var(--bf-gold);
	color: #fff;
}

.bf-recipe-quicklinks {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
}

.bf-recipe-quicklinks__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	max-width: var(--bf-container);
	margin: 0 auto;
}

.bf-recipe-quicklink {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 20px;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: #808080;
	transition: background 0.2s ease, color 0.2s ease;
}

.bf-recipe-quicklink:last-child {
	border-right: 0;
}

.bf-recipe-quicklink:hover {
	background: #faf8f4;
	color: var(--bf-gold);
}

.bf-recipe-quicklink__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 20px;
	color: var(--bf-gold);
}

.bf-recipe-quicklink__label {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.bf-page--fullwidth .entry-content > :not(.bf-recipe-hero):not(.bf-recipe-quicklinks):not(.bf-section) {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	max-width: var(--bf-container);
	margin-inline: auto;
	box-sizing: border-box;
}

.bf-alpha-nav {
	margin: 28px 0 36px;
}

.bf-alpha-nav__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.bf-alpha-nav__letter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 4px;
	background: var(--bf-gold);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bf-alpha-nav__letter:hover {
	background: var(--bf-dark);
	color: #fff;
	transform: translateY(-2px);
}

.bf-recipe-form {
	margin: 36px 0;
	padding: 28px;
	background: #f9f6f0;
	border: 1px solid rgba(175, 145, 88, 0.35);
}

.bf-recipe-form__title {
	margin: 0 0 20px;
	font-size: 20px;
	color: var(--bf-dark);
}

.bf-recipe-form__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
}

.bf-recipe-form__fields label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

.bf-recipe-form__fields label:has(textarea),
.bf-recipe-form__fields .bf-btn {
	grid-column: 1 / -1;
}

.bf-recipe-form__fields input,
.bf-recipe-form__fields textarea {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font: inherit;
}

.bf-page--fullwidth .entry-content h2 {
	margin-top: 36px;
	color: var(--bf-dark);
}

.bf-page--fullwidth .entry-content h3 {
	margin-top: 28px;
}

@media (max-width: 900px) {
	.bf-recipe-quicklinks__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bf-recipe-quicklink:nth-child(2n) {
		border-right: 0;
	}

	.bf-recipe-form__fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bf-recipe-quicklinks__grid {
		grid-template-columns: 1fr;
	}

	.bf-recipe-quicklink {
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.bf-recipe-hero__tab {
		min-width: 50%;
		flex: 1 1 50%;
	}
}

/* Header */
.bf-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.bf-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	min-height: var(--bf-header-height);
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto;
	padding: 8px 0;
}

.bf-logo-wrap {
	text-align: center;
}

.bf-logo,
.custom-logo {
	max-height: 100px;
	width: auto;
}

.bf-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bf-nav--left {
	justify-content: flex-end;
}

.bf-nav--right {
	justify-content: flex-start;
	gap: 16px;
}

.bf-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-menu__item {
	position: relative;
}

.bf-menu__link {
	display: inline-flex;
	align-items: center;
	padding: 8px 0;
	color: var(--bf-dark);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.bf-menu__link:hover,
.bf-menu__link:focus,
.bf-menu__item.current-menu-item > .bf-menu__link,
.bf-menu__item.current-menu-ancestor > .bf-menu__link {
	color: var(--bf-gold);
	border-bottom-color: var(--bf-gold);
}

.bf-menu__item--has-children > .bf-menu__link::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 6px;
	font-size: 11px;
}

.bf-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 50;
}

.bf-menu__item--has-children:hover > .sub-menu,
.bf-menu__item--has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bf-menu .sub-menu .bf-menu__link {
	display: block;
	padding: 10px 16px;
	font-size: 12px;
	border-bottom: 0;
}

.bf-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

/* Overlay-Suche wie Avada (classic + Lupen-Icon) */
.bf-nav--search-overlay {
	position: relative;
	flex: 1;
	justify-content: flex-start;
}

.bf-nav__menus {
	display: flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bf-nav--search-overlay.is-search-open .bf-menu--right {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.bf-overlay-search {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	max-width: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: max-width 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
	z-index: 30;
	background: #fff;
}

.bf-nav--search-overlay.is-search-open .bf-overlay-search,
.bf-nav--search-overlay.is-search-open.is-search-transition .bf-overlay-search {
	opacity: 1;
	visibility: visible;
}

.bf-searchform--classic .bf-searchform__content {
	display: flex;
	align-items: stretch;
	border: 1px solid #d4d4d4;
	border-radius: 0;
	overflow: hidden;
	height: 50px;
	background: #fff;
}

.bf-searchform__input {
	border: 0;
	margin: 0;
	padding: 0 14px;
	font: inherit;
	font-size: 14px;
	color: var(--bf-text);
	min-width: 220px;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-appearance: none;
	appearance: none;
}

.bf-searchform__input:focus {
	outline: none;
}

.bf-searchform__submit {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--bf-gold);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	flex-shrink: 0;
}

.bf-searchform__submit:hover {
	background: var(--bf-gold-accent);
}

.bf-search-spacer {
	width: 20px;
	flex-shrink: 0;
}

.bf-close-search {
	position: relative;
	width: 18px;
	height: 18px;
	margin: 0 0 0 4px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.bf-close-search::before,
.bf-close-search::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--bf-dark);
	transition: background-color 0.2s ease;
}

.bf-close-search::before {
	transform: translateY(-50%) rotate(45deg);
}

.bf-close-search::after {
	transform: translateY(-50%) rotate(-45deg);
}

.bf-close-search:hover::before,
.bf-close-search:hover::after {
	background: var(--bf-gold);
}

.bf-menu--search-action {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-menu__item--search {
	display: flex;
	align-items: center;
}

.bf-menu__search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 0 8px 10px;
	color: var(--bf-dark);
	font-size: 14px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.bf-menu__search-toggle:hover,
.bf-menu__search-toggle:focus,
.bf-nav--search-overlay.is-search-open .bf-menu__search-toggle {
	color: var(--bf-gold);
}

.bf-mobile-search {
	display: none;
	padding: 12px 16px 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
}

.bf-overlay-search--mobile {
	position: static;
	transform: none;
	max-width: none;
	opacity: 1;
	visibility: visible;
	overflow: visible;
}

.bf-overlay-search--mobile .bf-searchform__content {
	width: 100%;
}

.bf-overlay-search--mobile .bf-searchform__input {
	min-width: 0;
}

.bf-nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 8px;
	cursor: pointer;
}

.bf-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--bf-dark);
}

/* Sections migrated from Fusion (Avada: Hintergrund volle Breite, Inhalt max. 1248px) */
.bf-fullwidth .entry-content > .bf-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	box-sizing: border-box;
}

.bf-section {
	width: 100%;
}

.bf-section--full {
	max-width: none;
}

.bf-section--viewport {
	min-height: 100vh;
	height: 100vh;
	padding: 0 !important;
	margin-top: 0 !important;
	overflow: hidden;
}

.bf-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	width: min(100%, var(--bf-container));
	max-width: var(--bf-container);
	margin-inline: auto;
	padding-inline: var(--bf-gutter);
	gap: 0;
	box-sizing: border-box;
}

/* Bild/Text- und Form/Bild-Zweispaltigkeit: Abstand zwischen Spalten */
.bf-row:has(> .bf-col--half) {
	gap: 32px 40px;
	align-items: flex-start;
	justify-content: space-between;
}

.bf-section--full > .bf-row {
	width: min(100%, var(--bf-container));
	max-width: var(--bf-container);
	margin-inline: auto;
	padding-inline: var(--bf-gutter);
}

.bf-section--full > .bf-row:has(.eventbox-container) {
	justify-content: center;
	gap: 4px;
}

.bf-section--full > .bf-row:has(.logo-carousel-free),
.bf-section--full > .bf-row:has(#logo-carousel-free-13832),
.bf-section--full > .bf-row:has(.bf-logo-grid) {
	justify-content: center;
}

/* Referenzen: static client logo grid */
.bf-logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 1.75rem 1.25rem;
	align-items: center;
	justify-items: center;
	padding: 1.5rem 1rem 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.bf-logo-grid__item {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	width: 100%;
}

.bf-logo-grid img {
	max-width: 140px;
	max-height: 72px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.85;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

.bf-logo-grid img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@media (max-width: 700px) {
	.bf-logo-grid {
		grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
		gap: 1.25rem 0.75rem;
		padding: 1rem 0.5rem 2rem;
	}

	.bf-logo-grid img {
		max-width: 110px;
		max-height: 60px;
	}
}

.bf-col--third {
	flex: 1 1 calc(33.333% - 16px);
	min-width: 260px;
}

.bf-col.eventbox-container {
	flex: 0 1 32%;
	max-width: 32%;
	min-width: 280px;
}

.bf-col--half {
	flex: 1 1 calc(50% - 24px);
	min-width: min(100%, 280px);
	max-width: 100%;
}

.entry-content .bf-col--half > img,
.entry-content .bf-col--half img.alignnone,
.entry-content .bf-col--half img.size-full {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.bf-col--full {
	flex: 1 1 100%;
}

.bf-col--two-thirds {
	flex: 1 1 calc(66.666% - 16px);
	min-width: 300px;
}

.bf-col--has-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.bf-col--has-bg.bf-col--full {
	min-height: 200px;
	text-align: center;
}

.bf-col--has-bg.bf-col--full img {
	display: inline-block;
	max-width: min(280px, 70%);
	height: auto;
	margin-inline: auto;
}

/* Quote/Bild-Spalte (z. B. Franchise-Anfrage): Text lesbar über dem Foto */
.bf-col--half.bf-col--has-bg {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 560px;
	padding: 48px 40px 40px;
	color: #fff;
	overflow: hidden;
	box-sizing: border-box;
}

.bf-col--half.bf-col--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		to top,
		rgba(29, 29, 27, 0.88) 0%,
		rgba(29, 29, 27, 0.45) 42%,
		rgba(29, 29, 27, 0.12) 100%
	);
	pointer-events: none;
}

.bf-col--half.bf-col--has-bg > .bf-spacer {
	display: none;
}

.bf-col--half.bf-col--has-bg,
.bf-col--half.bf-col--has-bg p,
.bf-col--half.bf-col--has-bg .bf-title {
	color: #fff;
	text-align: left;
}

.bf-col--half.bf-col--has-bg strong {
	display: block;
	margin-top: 1.25em;
	color: var(--bf-gold-light);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.bf-col--half.bf-col--has-bg img {
	display: block;
	max-width: 140px;
	margin-top: 16px;
	height: auto;
}

/* Ninja Forms in Spalten: Floats dürfen Layout nicht sprengen */
.bf-col .nf-form-cont,
.bf-col .nf-form-content {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.bf-col .nf-field-container {
	float: none !important;
	max-width: 100%;
}

.bf-col .nf-form-content .nf-field-container:after {
	content: "";
	display: table;
	clear: both;
}

/* Multi-Part Platzhalter-Titel ausblenden */
.nf-form-cont .nf-mp-header,
.nf-form-cont .nf-breadcrumb,
.nf-form-cont .nf-breadcrumb-container {
	display: none !important;
}

.bf-section--gold {
	background-color: var(--bf-gold-light);
}

.bf-section--alt {
	background-color: #ebebeb;
}

.bf-spacer {
	display: block;
	width: 100%;
}

.bf-content-box--info {
	cursor: default;
	text-align: left;
	align-items: flex-start;
}

.bf-content-box--info .bf-content-box__icon {
	width: 42px;
	height: 42px;
	font-size: 20px;
	margin-bottom: 12px;
}

.bf-content-box--info .bf-content-box__title {
	font-size: 1.35rem;
	text-align: left;
}

.bf-content-box--info .bf-content-box__body {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #444;
	text-align: left;
}

.bf-section--gold .bf-btn--outline,
.bf-btn--outline {
	background: #fff;
	color: var(--bf-gold) !important;
	border: 2px solid #fff;
}

.bf-section--gold .bf-btn--outline:hover,
.bf-btn--outline:hover {
	background: transparent;
	color: #fff !important;
	border-color: #fff;
}

.bf-section--gold .bf-row {
	justify-content: center;
	padding-block: 40px;
}

.bf-col__link {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.entry-content > .bf-section {
	margin-bottom: 0;
}

.entry-content .bf-separator {
	border: 0;
	border-top: 1px solid var(--bf-gold-light);
	margin: 40px auto;
	max-width: 20%;
}

/* Avada fusion_separator mit Icon (z. B. fa-angle-double-down) */
.bf-separator-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 20%;
	margin-inline: auto;
	color: var(--bf-gold);
	--bf-sep-color: var(--bf-gold);
}

.bf-separator-icon[data-sep-color="#ffffff"],
.bf-section--gold .bf-separator-icon {
	color: #fff;
	--bf-sep-color: #fff;
}

.bf-separator-icon__line {
	flex: 1 1 auto;
	height: 0;
	border-top: 1px solid var(--bf-sep-color, var(--bf-gold));
}

.bf-separator-icon__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: content-box;
	width: 1.75em;
	height: 1.75em;
	margin: -0.5px 0 0;
	padding: 1px;
	border: 1px solid var(--bf-sep-color, var(--bf-gold));
	border-radius: 50%;
	background: transparent;
	color: var(--bf-sep-color, var(--bf-gold));
	line-height: 1;
}

.bf-separator-icon__icon i {
	font-size: inherit;
	color: inherit;
}

.entry-content iframe {
	max-width: 100%;
}

.bf-title--center {
	text-align: center;
}

.bf-video {
	margin: 24px auto;
	max-width: 854px;
}

.bf-video--center {
	margin-inline: auto;
}

.bf-video--left {
	margin-inline: 0 auto;
}

.bf-video--right {
	margin-inline: auto 0;
}

.bf-video__embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}

.bf-video__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Bausteine im Spalten-Layout ohne Extra-Wrapper (2/3 + 1/3 wie Live) */
.bf-part {
	display: contents;
}

.bf-section--boxed {
	padding: 36px 0;
}

.bf-section--boxed.bf-section--gold,
.bf-section--boxed.bf-section--alt {
	padding: 48px 0;
}

.bf-row:has(> .bf-col--two-thirds) {
	align-items: flex-start;
}

h1.bf-title {
	font-size: 64px;
	font-weight: 400;
	line-height: 1.15;
}

h2.bf-title,
.entry-content .bf-col h2 {
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
}

h3.bf-title {
	font-size: 36px;
	font-weight: 400;
	line-height: 1.25;
}

.entry-content .bf-col--two-thirds p {
	margin: 0 0 1.15em;
	color: var(--bf-text);
}

.entry-content .bf-col--two-thirds p strong {
	display: inline;
	margin-top: 0;
}

.entry-content .bf-col--third p {
	margin: 0 0 0.85em;
	font-size: 14px;
	line-height: 1.6;
}

.entry-content .bf-col--third img {
	margin-bottom: 12px;
}

/* Avada-Farbwerte aus Migration ersetzen */
.bf-section[style*="hsla(var(--awb-custom"] {
	background-color: #d0b88a !important;
}

.eventbox-container {
	position: relative;
}

.eventbox-container .bf-col__link {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 37.5rem;
	padding: 1.5rem;
	text-decoration: none;
}

.eventbox-container .bf-col__link h3 {
	color: #d8c09c;
	margin: 0 0 8px;
}

.eventbox-container .bf-col__link p {
	color: #fff;
	background: rgba(50, 50, 50, 0.8);
	padding: 10px;
	margin: 8px;
	font-size: 14px;
}

/* Volle Breite: kein Padding am Body-Content */
.bf-fullwidth .bf-main {
	padding: 0;
}

.bf-fullwidth .bf-header + .bf-main .bf-content--fullwidth {
	margin-top: 0;
}

/* Video-Hero: 100vh, randlos wie auf barflow.de */
.bf-section--viewport > .bf-row,
.bf-section--viewport > .bf-row > .bf-col {
	width: 100%;
	max-width: none;
	min-height: 100vh;
	height: 100%;
	padding: 0 !important;
	margin: 0 !important;
	gap: 0;
}

.bf-section--viewport .video-background {
	position: relative;
	width: 100%;
	height: 100vh !important;
	min-height: 100vh !important;
	overflow: hidden;
	isolation: isolate;
}

.bf-section--viewport .video-background video,
.bf-section--viewport .video-background #background-video {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	transform: none !important;
	object-fit: cover !important;
	z-index: 0 !important;
}

.bf-section--viewport .video-background::before {
	z-index: 0 !important;
}

.bf-section--viewport .video-overlay {
	position: absolute;
	inset: 0;
	z-index: 1 !important;
	background: rgba(0, 0, 0, 0.3);
}

.bf-section--viewport .video-background img {
	display: none;
}

#background-video::-webkit-media-controls,
#background-video::-webkit-media-controls-panel,
#background-video::-webkit-media-controls-play-button,
#background-video::-webkit-media-controls-start-playback-button {
	display: none !important;
}

/* Goldene Hügel-Trenner (fusion_section_separator) – volle Viewport-Breite */
.bf-section-separator {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	line-height: 0;
}

.bf-section-separator__svg {
	display: block;
	width: 100%;
	height: 19px;
}

.bf-section-separator__spacer {
	height: 19px;
}

.bf-hide-sm { display: block; }
.bf-hide-md { display: block; }
.bf-hide-lg { display: block; }

@media (max-width: 640px) {
	.bf-hide-sm { display: none !important; }
}

@media (min-width: 641px) and (max-width: 1024px) {
	.bf-hide-md { display: none !important; }
}

@media (min-width: 1025px) {
	.bf-hide-lg { display: none !important; }
}

.bf-btn-center {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-block: 0.75em 1em;
}

.bf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--bf-gold);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	border-radius: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

/* Volle Breite: Buttons zentrieren (Startseite, CTA-Sektionen) */
.entry-content .bf-col--full:not(:has(.bf-content-boxes, .eventbox-container, .logo-carousel-free, .bf-logo-grid, .pt-cv-wrapper, .video-background, .strong-view, .bf-mg, .bf-pe, .bf-mb, table, iframe)) {
	text-align: center;
}

.entry-content .bf-col--full > .bf-btn,
.entry-content .bf-col--full > .bf-btn-center {
	margin-inline: auto;
}

.bf-section--gold .bf-col,
.bf-section--gold .bf-col--full,
.bf-section--gold .bf-btn-center {
	text-align: center;
	justify-content: center;
}

/* Sidebar / Fließtext-Spalten: Buttons links */
.entry-content .bf-col--two-thirds,
.entry-content .bf-col--third {
	text-align: left;
}

.entry-content .bf-col--two-thirds .bf-btn-center,
.entry-content .bf-col--third .bf-btn-center {
	justify-content: flex-start;
}

/* Inline-CTAs in Premium-/Mixing-Blöcken */
.bf-pe__inner .bf-pe__cta,
.bf-mb__inner .bf-mb__cta {
	margin-inline: auto;
}

/* Icon-Content-Boxen (ehem. fusion_content_boxes) */
.bf-content-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 24px;
	width: 100%;
	margin: 24px 0;
}

.bf-content-boxes--3col .bf-content-box {
	flex: 0 1 calc(33.333% - 24px);
	min-width: 220px;
}

.bf-content-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--bf-dark);
	padding: 16px 12px;
	transition: transform 0.2s ease;
}

.bf-content-box:hover,
.bf-content-box:focus {
	transform: translateY(-4px);
	color: var(--bf-dark);
}

.bf-content-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: var(--bf-gold);
	color: #fff;
	font-size: 40px;
	margin-bottom: 16px;
}

.bf-content-box__title {
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
}

.bf-btn:hover,
.bf-btn:focus {
	background: #967a49;
	color: #fff !important;
	transform: translateY(-1px);
}

.bf-title {
	color: var(--bf-heading);
	text-align: center;
	margin: 0 0 20px;
}

.entry-content .bf-col {
	font-size: 1rem;
	line-height: 1.72;
}

.entry-content .bf-col--two-thirds {
	padding-right: 24px;
}

.entry-content .bf-col--third {
	padding-left: 16px;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.entry-content .bf-col--third .bf-title {
	text-align: left;
}

.entry-content .bf-col p,
.entry-content .bf-col h2 {
	margin: 0 0 1em;
}

.entry-content .bf-col strong {
	display: inline-block;
	margin-top: 0.5em;
}

.bf-title span {
	font-size: 20px;
}

.entry-content > .bf-section + .bf-section {
	margin-top: 0;
}

/* Footer (Avada: Widget-Bereich gold-hell, Copyright-Bar gold-dunkel) */
.bf-footer {
	color: var(--bf-footer-text);
	font-family: Poppins, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.65;
}

.bf-footer__widgets {
	background: var(--bf-footer-bg);
	padding: 55px 0 45px;
}

.bf-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: start;
}

.bf-footer__col > .bf-footer-widget + .bf-footer-widget {
	margin-top: 28px;
}

.bf-footer-widget {
	color: var(--bf-footer-text);
}

.bf-footer-widget p,
.bf-footer-widget .textwidget {
	margin: 0 0 1em;
	color: var(--bf-footer-text);
	font-size: 14px;
	line-height: 1.65;
}

.bf-footer-widget p:last-child,
.bf-footer-widget .textwidget p:last-child {
	margin-bottom: 0;
}

.bf-footer-widget em {
	font-style: italic;
}

.bf-footer-widget img {
	max-width: 100%;
	height: auto;
}

/* Footer review CTAs (ProvenExpert + Google) */
.bf-footer-reviews-widget {
	margin-top: 18px;
}

.bf-footer-reviews {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
}

.bf-review-card {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	padding: 16px 18px;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(29, 29, 27, 0.1);
	border-radius: 12px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.bf-review-card:hover,
.bf-review-card:focus {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(29, 29, 27, 0.18);
	box-shadow: 0 10px 22px rgba(29, 29, 27, 0.12);
	color: inherit;
	outline: none;
}

.bf-review-card__media {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: #0bb5b5;
}

.bf-review-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bf-review-card__media--google {
	background: #fff;
	border: 1px solid rgba(29, 29, 27, 0.08);
}

.bf-review-card__google-mark {
	display: block;
	width: 52px;
	height: 52px;
}

.bf-review-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.bf-review-card__brand {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(29, 29, 27, 0.55);
	line-height: 1.2;
}

.bf-review-card__cta {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(29, 29, 27, 0.95);
}

.bf-review-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-size: 12.5px;
	line-height: 1.3;
	color: rgba(29, 29, 27, 0.62);
}

.bf-review-card__stars {
	color: #e6a100;
	letter-spacing: 0.03em;
	font-size: 13px;
	line-height: 1;
}

/* Footer newsletter CTA (no inline form) */
.bf-footer-newsletter-widget {
	margin-top: 8px;
}

.bf-footer-newsletter__teaser {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--bf-footer-text);
}

.bf-footer-newsletter__btn {
	display: inline-block;
	padding: 11px 18px;
	background: #af9158;
	color: #fff !important;
	text-decoration: none;
	font-family: Poppins, Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	border-radius: 4px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.bf-footer-newsletter__btn:hover,
.bf-footer-newsletter__btn:focus {
	background: #967a45;
	color: #fff !important;
	transform: translateY(-1px);
	outline: none;
}

/* Keep the contact logo proportional to the review cards */
#text-4 .textwidget img,
.bf-footer-widget .wp-image-14479 {
	display: block;
	max-width: 210px;
	width: 100%;
	height: auto;
	margin-top: 4px;
}

.bf-footer-widget .menu,
.bf-footer-widget .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-footer-widget .menu a {
	display: inline-block;
	color: var(--bf-footer-text);
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.8;
	transition: color 0.2s ease;
}

.bf-footer-widget .menu a:hover,
.bf-footer-widget .menu a:focus {
	color: var(--bf-footer-link-hover);
}

.bf-footer-widget .sub-menu {
	margin: 4px 0 8px 12px;
}

.bf-footer-widget .sub-menu a {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: none;
}

.bf-footer-widget.widget_nav_menu .bf-widget-title {
	display: none;
}

.bf-widget-title,
.bf-footer-widget h4 {
	margin: 0 0 18px;
	font-family: Poppins, Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	color: var(--bf-footer-heading);
}

.bf-footer-widget .mc4wp-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bf-footer-heading);
	margin-bottom: 6px;
}

.bf-footer-widget .mc4wp-form input[type="text"],
.bf-footer-widget .mc4wp-form input[type="email"],
.bf-footer-widget .mc4wp-form input[type="submit"] {
	font-family: inherit;
	font-size: 14px;
}

.bf-footer-widget .mc4wp-form input[type="text"],
.bf-footer-widget .mc4wp-form input[type="email"] {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--bf-gold);
	background: #fff;
	color: var(--bf-dark);
	margin-bottom: 12px;
}

.bf-footer-widget .mc4wp-form input[type="submit"] {
	background: var(--bf-gold);
	color: #fff;
	border: 0;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.bf-footer-widget .mc4wp-form input[type="submit"]:hover {
	background: var(--bf-dark);
}

.bf-footer__bar {
	background: var(--bf-footer-copyright-bg);
	border-top: 0;
	padding: 16px 0;
}

.bf-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.bf-footer__copy {
	margin: 0;
	font-size: 13px;
	color: var(--bf-copyright-text);
}

.bf-footer__social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bf-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--bf-footer-social);
	font-size: 16px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.bf-footer__social a:hover,
.bf-footer__social a:focus {
	color: #fff;
}

.bf-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: var(--bf-gold);
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 90;
}

.bf-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
	.bf-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.bf-nav-toggle {
		display: block;
		grid-column: 1;
	}

	.bf-logo-wrap {
		grid-column: 2;
	}

	.bf-nav--left,
	.bf-nav--right {
		display: none;
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
		padding: 12px 0;
	}

	.bf-header.is-open .bf-nav--left,
	.bf-header.is-open .bf-nav--right {
		display: flex;
	}

	.bf-menu {
		flex-direction: column;
		width: 100%;
	}

	.bf-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding-left: 12px;
	}

	.bf-nav--search-overlay .bf-overlay-search:not(.bf-overlay-search--mobile) {
		display: none;
	}

	.bf-menu--search-action {
		display: none;
	}

	.bf-header.is-open .bf-mobile-search {
		display: block;
	}

	.bf-footer__grid {
		grid-template-columns: 1fr;
	}

	.bf-review-card {
		padding: 14px 16px;
	}

	.bf-review-card__media {
		width: 84px;
		height: 84px;
	}

	.bf-blog-grid {
		grid-template-columns: 1fr;
	}
}

.bf-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.bf-blog-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	overflow: hidden;
}

.bf-blog-grid--equal .bf-blog-item {
	height: 100%;
}

.bf-blog-item__thumb {
	display: block;
	line-height: 0;
}

.bf-blog-item__thumb img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.bf-blog-item__title {
	margin: 16px 16px 12px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}

.bf-blog-item__title a {
	color: var(--bf-text);
	text-decoration: none;
}

.bf-blog-item__title a:hover,
.bf-blog-item__title a:focus {
	color: var(--bf-gold);
}

.bf-blog-item__excerpt {
	margin: 0 16px 16px;
	font-size: 0.9rem;
	color: #666;
}

/* ==========================================================================
   Cocktail Hub
   ========================================================================== */

.bf-cocktail-hub {
	width: 100%;
}

.bf-hub-hero {
	position: relative;
	min-height: clamp(320px, 58vh, 640px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #f4f0ea;
}

.bf-hub-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}

.bf-hub-hero__fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(175, 145, 88, 0.25), transparent 55%),
		linear-gradient(160deg, #f7f3ec 0%, #e8dfd0 100%);
}

.bf-hub-hero__content {
	position: relative;
	z-index: 1;
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto;
	padding: clamp(32px, 6vw, 72px) 0;
	color: #fff;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
	background: linear-gradient(transparent, rgba(29, 29, 27, 0.55));
	box-sizing: content-box;
	padding-left: var(--bf-gutter);
	padding-right: var(--bf-gutter);
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.bf-hub-hero__content {
	padding: clamp(40px, 7vw, 80px) var(--bf-gutter) clamp(36px, 5vw, 64px);
	background: linear-gradient(transparent 10%, rgba(29, 29, 27, 0.62));
}

.bf-hub-hero__brand {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bf-gold-light);
}

.bf-hub-hero__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
	max-width: 16ch;
}

.bf-hub-hero__lead {
	margin: 0;
	font-size: clamp(15px, 2vw, 18px);
	max-width: 36em;
	opacity: 0.95;
}

.bf-hub-section-lead {
	text-align: center;
	max-width: 36em;
	margin: -8px auto 28px;
	color: rgba(33, 35, 38, 0.72);
}

.bf-hub-pillars__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.bf-hub-pillar {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 18px;
	text-decoration: none;
	color: var(--bf-dark);
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.bf-hub-pillar:hover,
.bf-hub-pillar:focus {
	color: var(--bf-dark);
	border-bottom-color: var(--bf-gold);
}

.bf-hub-pillar__title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bf-hub-pillar__text {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(33, 35, 38, 0.7);
}

.bf-cocktail-search {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 640px;
	margin: 0 auto;
}

.bf-cocktail-search__input {
	flex: 1 1 240px;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid rgba(29, 29, 27, 0.18);
	font: inherit;
	font-size: 16px;
	background: #fff;
}

.bf-cocktail-search__input:focus {
	outline: 2px solid var(--bf-gold);
	outline-offset: 1px;
}

.bf-cocktail-search__submit {
	min-height: 48px;
}

.bf-hub-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bf-hub-category {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--bf-dark);
	overflow: hidden;
}

.bf-hub-category:hover,
.bf-hub-category:focus {
	color: var(--bf-dark);
}

.bf-hub-category__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #efeae2;
	line-height: 0;
}

.bf-hub-category__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.bf-hub-category:hover .bf-hub-category__media img {
	transform: scale(1.04);
}

.bf-hub-category__az-label {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 300;
	letter-spacing: 0.08em;
	color: var(--bf-gold);
	background: linear-gradient(160deg, #f7f3ec, #e8dfd0);
}

.bf-hub-category__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 0 0;
}

.bf-hub-category__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
}

.bf-hub-category__text {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(33, 35, 38, 0.7);
}

.bf-hub-category__count {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bf-gold);
}

.bf-hub-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto 40px;
}

.bf-hub-card {
	margin: 0;
}

.bf-hub-card__link {
	display: block;
	text-decoration: none;
	color: var(--bf-dark);
}

.bf-hub-card__link:hover,
.bf-hub-card__link:focus {
	color: var(--bf-dark);
}

.bf-hub-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #efeae2;
	line-height: 0;
}

.bf-hub-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.bf-hub-card__link:hover .bf-hub-card__media img {
	transform: scale(1.04);
}

.bf-hub-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 160px;
	background:
		radial-gradient(circle at 40% 30%, rgba(175, 145, 88, 0.35), transparent 50%),
		#efeae2;
}

.bf-hub-card__body {
	padding: 14px 0 0;
}

.bf-hub-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.bf-hub__empty {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto 48px;
	text-align: center;
	color: rgba(33, 35, 38, 0.7);
}

.bf-rubrik-page {
	padding: 40px 0 64px;
}

.bf-rubrik-page__header {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto 36px;
	text-align: center;
}

.bf-rubrik-page__header .bf-hub-hero__brand {
	color: var(--bf-gold);
	text-shadow: none;
}

.bf-rubrik-page__title {
	margin: 0 0 12px;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
}

.bf-rubrik-page__lead {
	margin: 0 auto 16px;
	max-width: 36em;
	color: rgba(33, 35, 38, 0.72);
}

.bf-rubrik-page__back a {
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Home teaser */
.bf-hub-teaser {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	width: min(100%, var(--bf-container));
	margin: 0 auto;
}

.bf-hub-teaser__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bf-hub-teaser__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bf-gold);
}

.bf-hub-teaser__title {
	margin: 0 0 14px;
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 400;
	line-height: 1.2;
}

.bf-hub-teaser__lead {
	margin: 0 0 24px;
	font-size: 17px;
	color: rgba(33, 35, 38, 0.75);
}

.bf-hub-teaser__cta {
	justify-content: flex-start;
}

/* Recipe single: hero + ads + affiliate */
.bf-content--recipe-hub {
	max-width: none;
	width: 100%;
	padding-top: 0;
}

.bf-content--recipe-hub .bf-article__nav {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin-left: auto;
	margin-right: auto;
	padding-top: 24px;
}

.bf-article__thumb--hero {
	margin: 0 0 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.bf-article__thumb--hero img {
	width: 100%;
	max-height: min(72vh, 720px);
	object-fit: cover;
	object-position: center;
}

.bf-recipe-layout {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr) 160px;
	gap: 28px;
	width: min(100% - 2 * var(--bf-gutter), 1248px);
	margin: 36px auto 0;
	align-items: start;
}

.bf-recipe-layout__main {
	min-width: 0;
}

.bf-ad-slot {
	position: sticky;
	top: calc(var(--bf-header-height) + 16px);
	min-height: 280px;
}

.bf-ad-slot__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 16px;
	background: #f6f4ef;
	border: 1px dashed rgba(175, 145, 88, 0.45);
	color: rgba(29, 29, 27, 0.45);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}

.bf-affiliate {
	margin: 40px 0 24px;
	padding: 28px 24px;
	background: #f9f6f0;
	border-top: 3px solid var(--bf-gold);
}

.bf-affiliate__title {
	margin: 0 0 8px;
	font-size: 24px;
}

.bf-affiliate__lead {
	margin: 0 0 16px;
	color: rgba(33, 35, 38, 0.72);
}

.bf-affiliate__note {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bf-gold);
}

.bf-affiliate__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-affiliate__list li {
	margin: 0 0 10px;
}

.bf-affiliate__list a {
	font-weight: 600;
	text-decoration: none;
}

.bf-affiliate__list a:hover {
	text-decoration: underline;
}

.bf-content--recipe-hub .bf-related-posts {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1100px) {
	.bf-hub-pillars__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bf-hub-category-grid,
	.bf-hub-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bf-recipe-layout {
		grid-template-columns: 1fr;
	}

	.bf-ad-slot {
		display: none;
	}
}

@media (max-width: 720px) {
	.bf-hub-pillars__grid,
	.bf-hub-category-grid,
	.bf-hub-cards {
		grid-template-columns: 1fr;
	}

	.bf-hub-teaser {
		grid-template-columns: 1fr;
	}

	.bf-hub-hero__title {
		max-width: none;
	}
}

/* Newsletter landing page */
.bf-page--newsletter {
	padding: 48px 0 72px;
}

.bf-newsletter-hero {
	max-width: 720px;
	margin: 0 auto 36px;
}

.bf-newsletter-hero .bf-page__title {
	margin-bottom: 12px;
}

.bf-newsletter-hero__lead {
	margin: 0;
	font-size: 17px;
	line-height: 1.65;
	color: rgba(29, 29, 27, 0.78);
}

.bf-newsletter-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: start;
	max-width: 980px;
	margin-inline: auto;
}

.bf-newsletter-benefits h2,
.bf-newsletter-form-wrap h2 {
	margin: 0 0 16px;
	font-family: Poppins, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #1d1d1b;
}

.bf-benefit-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-benefit-list li {
	padding: 16px 0;
	border-bottom: 1px solid rgba(29, 29, 27, 0.1);
}

.bf-benefit-list li:last-child {
	border-bottom: 0;
}

.bf-benefit-list strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1.02rem;
	color: #af9158;
}

.bf-benefit-list span {
	display: block;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(29, 29, 27, 0.72);
}

.bf-newsletter-form-wrap {
	background: #f4ebe0;
	border: 1px solid rgba(175, 145, 88, 0.25);
	border-radius: 12px;
	padding: 28px 26px;
}

.bf-newsletter-form-wrap__note {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(29, 29, 27, 0.7);
}

.bf-newsletter-form-wrap__privacy {
	margin: 16px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(29, 29, 27, 0.6);
}

.bf-newsletter-form-wrap__privacy a {
	color: #af9158;
}

.bf-newsletter-form .mc4wp-form label {
	display: block;
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 29, 27, 0.75);
}

.bf-newsletter-form .mc4wp-form p {
	margin: 0 0 14px;
}

.bf-newsletter-form .mc4wp-form input[type="text"],
.bf-newsletter-form .mc4wp-form input[type="email"] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid rgba(29, 29, 27, 0.18);
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	font-family: inherit;
}

.bf-newsletter-form .mc4wp-form input[type="submit"] {
	display: inline-block;
	margin-top: 4px;
	padding: 12px 22px;
	border: 0;
	border-radius: 4px;
	background: #af9158;
	color: #fff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.bf-newsletter-form .mc4wp-form input[type="submit"]:hover {
	background: #967a45;
}

@media (max-width: 820px) {
	.bf-newsletter-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.bf-page--newsletter {
		padding: 32px 0 56px;
	}
}


.bf-alpha-nav__letter.is-active {
	background: var(--bf-dark);
	color: #fff;
}

.bf-hub-section-more {
	text-align: center;
	margin: 8px 0 28px;
}

.bf-hub-section-more a {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
}

.bf-hub-inline-search {
	width: min(100% - 2 * var(--bf-gutter), 640px);
	margin: 0 auto 36px;
}

.bf-hub-category-grid--page {
	width: min(100% - 2 * var(--bf-gutter), var(--bf-container));
	margin: 0 auto 48px;
}

.bf-az-landing .bf-alpha-nav,
.bf-letter-page .bf-alpha-nav {
	margin-bottom: 32px;
}

.bf-search-landing .bf-cocktail-search {
	margin-top: 8px;
}
