/* =========================================================================
   Bäckerei Hermann – Theme Stylesheet
   ========================================================================= */

:root {
	/* Brand */
	--blue:           #2f5c8c;
	--blue-deep:      #21426a;

	/* Hell / Cream */
	--white:          #ffffff;
	--cream:          #fafaf7;
	--paper:          #f5f5f0;
	--field:          #f5f5f5;
	--field-hover:    #f0f0f0;
	--field-focus:    #ececec;

	/* Dunkel */
	--dark:           #1b1b1b;       /* About + Imagefilm Sections */
	--dark-deep:      #050505;       /* Footer */
	--dark-soft:      #2a2326;
	--black:          #000000;

	/* Text */
	--ink:            #1a1b1f;
	--ink-soft:       #43464d;
	--ink-mute:       #6b6b6b;
	--text-on-dark:   #ffffff;
	--text-on-dark-soft: rgba(255,255,255,0.75);

	/* Linien & Schatten */
	--line:           #e5e5e5;
	--line-dark:      rgba(255,255,255,0.1);
	--shadow-light:   0 2px 5px rgba(0,0,0,.04);
	--shadow-card:    0 20px 50px -30px rgba(0,0,0,.18);

	/* Typografie */
	--font-display:   'Montserrat', system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-script:    'Gothic A1', 'Montserrat', system-ui, sans-serif;
	--font-body:      'Montserrat', system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Layout */
	--radius:         5px;
	--radius-lg:      14px;
	--gutter:         max(20px, 4vw);
	--container:      1200px;
	--ease:           cubic-bezier(.789, .159, .25, 1);
	--nav-height:     90px;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================================
   Typografie – matched zum Original (Webflow defaults + overrides)
   ========================================================================= */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.4em;
}
/* Original Webflow defaults */
h1 { font-size: 38px; line-height: 44px; font-weight: 700; }
h2 { font-size: 32px; line-height: 36px; font-weight: 700; }
h3 { font-size: 24px; line-height: 30px; font-weight: 700; }
h4 { font-size: 18px; line-height: 24px; font-weight: 700; }
p  { font-size: 16px; line-height: 1.6; }

.bh-eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin-bottom: 1em;
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
}
.bh-eyebrow.is-light,
.bh-section.is-dark .bh-eyebrow { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.4); }

/* =========================================================================
   Buttons
   ========================================================================= */
.bh-button {
	display: inline-block;
	background: var(--blue);
	color: #fcfef4;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: var(--radius);
	border: 2px solid var(--blue);
	transition: background-color .4s var(--ease), color .25s var(--ease), border-color .4s var(--ease), transform .25s var(--ease);
	cursor: pointer;
	text-align: center;
	line-height: 1.4;
}
.bh-button:hover {
	background: var(--white);
	color: var(--blue);
	transform: translateY(-2px);
}
.bh-button.is-dark {
	background: #18181d;
	border-color: #18181d;
	color: var(--white);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
}
.bh-button.is-dark:hover {
	background: #272731;
	color: var(--white);
}
.bh-button.is-outline {
	background: transparent;
	color: var(--blue);
}
.bh-button.is-outline:hover {
	background: var(--blue);
	color: var(--white);
}
.bh-button.is-ghost-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255,255,255,0.6);
}
.bh-button.is-ghost-light:hover {
	background: var(--white);
	color: var(--blue);
	border-color: var(--white);
}

/* =========================================================================
   Layout-Container
   ========================================================================= */
.bh-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.bh-section {
	padding-block: clamp(60px, 10vh, 120px);
}

/* Anker-Sprungziele kompensieren die sticky Nav, damit der Section-Anfang
   nicht hinter dem Header verschwindet. */
[id="start"],
[id="ueber-uns"],
[id="produkte"],
[id="nachhaltigkeit"],
[id="filialen"],
[id="karriere"],
[id="kontakt"] {
	scroll-margin-top: 100px;
}
.bh-section.is-dark   { background: var(--dark);  color: var(--text-on-dark); }
.bh-section.is-dark .bh-eyebrow { color: rgba(255,255,255,0.6); }
.bh-section.is-dark h1, .bh-section.is-dark h2, .bh-section.is-dark h3 { color: var(--white); }
.bh-section.is-cream  { background: var(--cream); color: var(--ink); }
.bh-section.is-white  { background: var(--white); color: var(--ink); }
.bh-section.is-paper  { background: var(--paper); color: var(--ink); }

/* Section mit Hermann-13 als Hintergrund (Filialen) */
.bh-section.has-image-bg {
	position: relative;
	color: var(--ink);
	background-color: var(--white);
	background-size: cover;
	background-position: 40% 80%;
	background-repeat: no-repeat;
	isolation: isolate;
}
.bh-section.has-image-bg::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(255,255,255,0.55);
	z-index: -1;
}

/* =========================================================================
   Header / Nav  – weiß, sticky, schwarze Links, Logo+Tagline gestackt
   ========================================================================= */
.bh-nav {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--white);
	box-shadow: var(--shadow-light);
	padding: 14px var(--gutter);
	transition: padding .25s var(--ease);
}
.bh-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1280px;
	margin-inline: auto;
}
.bh-nav__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: var(--ink);
}
.bh-nav__brand img {
	width: 120px;
	height: auto;
}
.bh-nav__brand-tagline {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 400;
	color: var(--ink);
	line-height: 1;
	white-space: nowrap;
}

.bh-nav__menu {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0; padding: 0;
	align-items: center;
}
.bh-nav__menu li {
	display: flex;
	list-style: none;
	margin: 0; padding: 0;
}
/* Greift sowohl auf hardcoded .bh-nav__link als auch auf WP-Menü-Items */
.bh-nav__link,
.bh-nav__menu a,
.bh-nav__menu .menu-item > a {
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 15px;
	padding: 12px 18px;
	text-decoration: none;
	display: inline-block;
	transition: box-shadow .25s var(--ease), color .25s var(--ease);
}
.bh-nav__link:hover,
.bh-nav__menu a:hover,
.bh-nav__menu .menu-item > a:hover {
	color: var(--ink-mute);
	box-shadow: inset 0 -5px 0 0 var(--blue);
}

.bh-nav__toggle {
	display: none;
	background: transparent;
	border: 0;
	color: var(--ink);
	font-size: 28px;
	cursor: pointer;
	padding: 4px 8px;
}

@media (max-width: 900px) {
	.bh-nav__menu {
		position: fixed;
		inset: 110px 0 0 0;
		flex-direction: column;
		align-items: stretch;
		background: var(--white);
		padding: 30px var(--gutter);
		gap: 4px;
		transform: translateY(-110%);
		transition: transform .35s var(--ease);
		border-top: 1px solid var(--line);
	}
	.bh-nav__menu li { width: 100%; }
	.bh-nav__menu a { display: block; padding: 14px 0; font-size: 18px; }
	.bh-nav__menu.is-open { transform: translateY(0); }
	.bh-nav__toggle { display: inline-flex; }
}

/* =========================================================================
   Hero (Vollbild mit Video, schwarzer Hintergrund)
   ========================================================================= */
.bh-hero {
	position: relative;
	min-height: 90vh;
	min-height: 90svh;
	display: grid;
	place-items: center;
	color: var(--white);
	background: var(--black);
	overflow: hidden;
	isolation: isolate;
}
.bh-hero__video,
.bh-hero__video video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
}
.bh-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
	z-index: -1;
}
.bh-hero__content {
	text-align: center;
	max-width: 900px;
	padding: 0 var(--gutter);
}
.bh-hero__title {
	font-size: clamp(42px, 8vh, 90px);
	line-height: 1.1;
	font-weight: 500;
	margin: 0 0 0.3em;
	color: var(--white);
	letter-spacing: -0.01em;
}
.bh-hero__subhead {
	font-size: 30px;
	line-height: 44px;
	font-weight: 300;
	margin: 0 0 2em;
	max-width: 60%;
	margin-inline: auto;
	color: rgba(255,255,255,0.92);
}
@media (max-width: 800px) {
	.bh-hero__title { font-size: 42px; line-height: 56px; }
	.bh-hero__subhead { font-size: 22px; line-height: 32px; max-width: 90%; }
}
.bh-hero__arrow {
	position: absolute;
	bottom: 40px; left: 50%;
	width: 22px;
	transform: translateX(-50%);
	opacity: 0.7;
	animation: bh-bounce 2.6s var(--ease) infinite;
	filter: invert(1);
}
@keyframes bh-bounce {
	0%, 100% { transform: translate(-50%, 0); }
	50%      { transform: translate(-50%, 10px); }
}

/* =========================================================================
   Über uns (DUNKEL)
   ========================================================================= */
.bh-about__intro {
	max-width: 80vw;
	margin: 0 auto 60px;
	text-align: center;
	color: var(--white);
}
.bh-about__intro h2 {
	font-size: 40px;
	line-height: 1.2;
	font-style: italic;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 0.6em;
}
.bh-about__intro p {
	font-size: 20px;
	line-height: 1.5;
	color: var(--white);
}
@media (max-width: 800px) {
	.bh-about__intro h2 { font-size: 28px; }
	.bh-about__intro p { font-size: 16px; }
}

.bh-about__hero-img {
	width: 100%;
	max-height: 70vh;
	object-fit: cover;
	border-radius: var(--radius-lg);
	margin-bottom: 80px;
}

.bh-team-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}
@media (max-width: 900px) {
	.bh-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.bh-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.bh-team-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
	color: var(--white);
}
.bh-team-card__name {
	font-size: 22px;
	font-weight: 600;
	color: var(--white);
	margin: 0;
}
.bh-team-card__img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: var(--radius-lg);
}
.bh-team-card__role {
	font-size: 15px;
	color: rgba(255,255,255,0.75);
	margin: 0;
}

/* =========================================================================
   Feature-Block (Text + Slider) – Original: 80vw breit, kein 1200er Container
   ========================================================================= */
.bh-container:has(> .bh-feature),
.bh-container:has(> .bh-image-grid) {
	max-width: 1500px;
	padding-inline: clamp(20px, 5vw, 80px);
}
.bh-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 120px);
	align-items: center;
	margin-block: 80px;
}
.bh-feature.is-reverse .bh-feature__media { order: -1; }
.bh-feature__title {
	font-size: 48px;
	line-height: 1.15;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 0.6em;
}
.bh-feature__text {
	font-size: 22px;
	line-height: 32px;
	color: var(--ink);
	max-width: 50ch;
}
@media (max-width: 991px) {
	.bh-feature__title { font-size: 40px; }
	.bh-feature__text  { font-size: 20px; line-height: 30px; }
}
@media (max-width: 600px) {
	.bh-feature__title { font-size: 30px; }
	.bh-feature__text  { font-size: 16px; line-height: 26px; }
}
.bh-feature__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 3/2;
	box-shadow: var(--shadow-card);
	min-width: 0;
}
.bh-feature__media > img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.bh-feature__media > .bh-slider {
	position: absolute;
	inset: 0;
}

@media (max-width: 800px) {
	.bh-feature { grid-template-columns: 1fr; gap: 32px; margin-block: 48px; }
	.bh-feature.is-reverse .bh-feature__media { order: 0; }
}

/* =========================================================================
   Slider – ein Slide gleichzeitig sichtbar, Rest off-screen
   ========================================================================= */
.bh-slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	width: 100%;
	height: 100%;
}
.bh-slider__track {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	transition: transform .6s var(--ease);
	will-change: transform;
}
.bh-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	height: 100%;
}
.bh-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bh-slider__dots {
	position: absolute;
	bottom: 18px; left: 50%;
	transform: translateX(-50%);
	display: flex; gap: 8px;
	z-index: 2;
}
.bh-slider__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: rgba(255,255,255,0.5);
	border: 0; cursor: pointer;
	transition: background .2s;
}
.bh-slider__dot.is-active { background: var(--white); }
.bh-slider__arrow {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	background: rgba(0,0,0,0.35);
	color: var(--white);
	border: 0;
	width: 42px; height: 42px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: grid; place-items: center;
	transition: background .2s;
}
.bh-slider__arrow:hover { background: rgba(0,0,0,0.6); }
.bh-slider__arrow.is-prev { left: 14px; }
.bh-slider__arrow.is-next { right: 14px; }

/* =========================================================================
   Image-Grid (4-up)
   ========================================================================= */
.bh-image-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-block: 60px;
}
.bh-image-grid img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: var(--radius);
	display: block;
}
@media (max-width: 800px) {
	.bh-image-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =========================================================================
   Karriere – matched zum Original
   ========================================================================= */
.bh-career {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 40px;
	gap: 2vw;
}
.bh-career__title {
	color: var(--ink);
	font-size: 38px;
	line-height: 1.2;
	font-weight: 800;
	margin: 0;
}
.bh-career__intro {
	font-size: 18px;
	line-height: 1.5;
	color: var(--ink);
	max-width: 80%;
	margin: 0;
}
.bh-career__features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	width: 100%;
	margin-top: 20px;
}
.bh-career__feature {
	background: var(--blue);
	color: var(--white);
	border-radius: 5px;
	padding: 15px;
}
.bh-career__feature h4 {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
}
.bh-career__feature p {
	color: var(--white);
	font-size: 16px;
	font-weight: 200;
	line-height: 1.5;
	margin: 0;
}
.bh-career__cta {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	width: 100%;
	padding-top: 30px;
}
.bh-career__cta h4 {
	color: var(--ink);
	font-size: 38px;
	line-height: 1.2;
	font-weight: 500;
	margin: 0;
	text-align: center;
}
@media (max-width: 800px) {
	.bh-career { padding: 20px; }
	.bh-career__features { grid-template-columns: 1fr; }
	.bh-career__title { font-size: 32px; }
	.bh-career__cta h4 { font-size: 28px; }
}

/* =========================================================================
   Testimonials
   ========================================================================= */
.bh-quotes {
	position: relative;
	max-width: 900px;
	margin: 80px auto;
	text-align: center;
	padding: 0 var(--gutter);
}
.bh-quotes__icon { width: 50px; margin: 0 auto 24px; opacity: 0.5; }
.bh-quotes__text {
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.45;
	color: var(--ink);
	margin: 0 0 24px;
	min-height: 5em;
}
.bh-quotes__attribution {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--ink-mute);
	font-size: 14px;
}
.bh-quotes__attribution::before,
.bh-quotes__attribution::after {
	content: ""; width: 28px; height: 1px; background: var(--ink-mute);
}
.bh-quotes__dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.bh-quotes__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: #d3d3d3;
	border: 0; cursor: pointer;
}
.bh-quotes__dot.is-active { background: var(--blue); }

/* =========================================================================
   Filialen-Heading-Block + Cards
   ========================================================================= */
.bh-stores__title {
	text-align: center;
	font-size: 60px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 40px;
}
@media (max-width: 800px) {
	.bh-stores__title { font-size: 42px; line-height: 52px; }
}
.bh-stores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.bh-store-card {
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(6px);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: var(--shadow-card);
}
.bh-store-card__name {
	font-size: 25px;
	font-weight: 700;
	margin: 0;
	color: var(--ink);
}
.bh-store-card__address {
	font-style: italic;
	font-weight: 600;
	margin: 0;
	color: var(--ink);
}
.bh-store-card__hours {
	font-size: 15px;
	color: var(--ink-soft);
	margin: 0;
}
.bh-store-card .bh-button { align-self: flex-start; margin-top: auto; }
@media (max-width: 900px) {
	.bh-stores-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Kontakt-Section + Formular
   Form auf NORMALEM Hintergrund, graue Felder, dunkler/blauer Button
   ========================================================================= */
.bh-contact {
	background: var(--white);
	color: var(--ink);
	padding: clamp(60px, 10vw, 120px) var(--gutter);
	text-align: center;
}
.bh-contact__title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 300;
	margin-bottom: 48px;
	color: var(--ink);
}
.bh-contact__form {
	max-width: 580px;
	margin: 0 auto;
	display: grid;
	gap: 15px;
}
.bh-contact__form input,
.bh-contact__form textarea {
	width: 100%;
	padding: 26px 20px;
	border-radius: var(--radius);
	border: 0;
	font-family: var(--font-body);
	font-size: 14px;
	background: var(--field);
	color: var(--ink);
	transition: background .2s var(--ease);
}
.bh-contact__form input:hover,
.bh-contact__form textarea:hover { background: var(--field-hover); }
.bh-contact__form input:focus,
.bh-contact__form textarea:focus { background: var(--field-focus); outline: none; }
.bh-contact__form textarea { min-height: 170px; padding: 18px 20px; resize: vertical; }
.bh-contact__form .bh-button {
	background: var(--blue);
	color: var(--white);
	border-color: var(--blue);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 18px 30px;
	justify-self: center;
	margin-top: 8px;
}
.bh-contact__form .bh-button:hover {
	background: var(--blue-deep);
	border-color: var(--blue-deep);
}

/* =========================================================================
   Footer  – fast-schwarz #050505 mit FARBIGEN Socials
   ========================================================================= */
.bh-footer {
	background: var(--dark-deep);
	color: var(--white);
	padding: 60px var(--gutter) 30px;
}
.bh-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 60px;
	max-width: 1000px;
	margin-inline: auto;
	padding-block: 32px;
}
.bh-footer__brand img {
	width: 120px;
	margin-bottom: 16px;
}
.bh-footer__tagline {
	max-width: 16vw;
	min-width: 220px;
	color: var(--white);
	font-weight: 600;
	margin-bottom: 28px;
	font-style: normal;
}
.bh-footer__col h5 {
	font-size: 14px;
	letter-spacing: 1.5px;
	margin: 0 0 18px;
	color: var(--white);
	font-weight: 600;
}
.bh-footer__brand h5 { margin-top: 16px; }
.bh-footer__col a {
	display: block;
	padding: 6px 0;
	color: rgba(255,255,255,0.7);
	transition: color .2s;
}
.bh-footer__col a:hover { color: var(--white); }
/* WordPress-Menü-Items (wenn ein nav-menu zugewiesen ist) */
.bh-footer__col ul,
.bh-footer__col li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bh-footer__socials {
	display: flex;
	gap: 16px;
	align-items: center;
}
.bh-footer__socials a {
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center; justify-content: center;
	transition: transform .25s var(--ease);
}
.bh-footer__socials a:hover { transform: translateY(-2px); }
.bh-footer__socials svg { width: 40px; height: 40px; }

.bh-footer__line {
	height: 1px;
	background: var(--line-dark);
	margin: 32px 0 20px;
}
.bh-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	max-width: 1000px;
	margin-inline: auto;
	font-size: 13px;
	color: rgba(255,255,255,0.55);
}
.bh-footer__bottom a { color: rgba(255,255,255,0.85); }

@media (max-width: 800px) {
	.bh-footer__top { grid-template-columns: 1fr; gap: 40px; text-align: left; }
}

/* =========================================================================
   Statische Inhaltsseiten (Impressum, DSGVO – Fallback)
   ========================================================================= */
.bh-legal {
	padding: 80px var(--gutter) 100px;
	max-width: 820px;
	margin-inline: auto;
}
.bh-legal h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 1em; }
.bh-legal h2 { font-size: 22px; margin: 2em 0 0.6em; }
.bh-legal h3 { font-size: 18px; margin: 1.6em 0 0.4em; }
.bh-legal p, .bh-legal li {
	font-size: 16px;
	color: var(--ink-soft);
	line-height: 1.7;
}
.bh-legal ul, .bh-legal ol { padding-left: 1.4em; }
.bh-legal a { color: var(--blue); text-decoration: underline; }

/* =========================================================================
   404
   ========================================================================= */
.bh-404 {
	min-height: 70vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 80px var(--gutter) 80px;
}
.bh-404 h1 { font-size: clamp(60px, 12vw, 140px); margin: 0; }
.bh-404 p  { font-size: 20px; color: var(--ink-soft); margin: 0 0 32px; }

/* =========================================================================
   Scroll-Reveal – matched Webflow Original: translate(0, 40px) → 0
   ========================================================================= */
.bh-reveal {
	opacity: 0;
	transform: translate3d(0, 40px, 0);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
	will-change: opacity, transform;
}
.bh-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
	.bh-reveal { transition: none; opacity: 1; transform: none; }
}

/* iOS Cookie-Banner Smooth-Scroll */
.fs-cc-prefs_content { -webkit-overflow-scrolling: touch; }
