@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/Inter-Variable.ttf") format("truetype");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 700 900;
	font-display: swap;
	src: url("../fonts/BarlowCondensed-Bold.ttf") format("truetype");
}

:root {
	--fbh-ink: #10212a;
	--fbh-ink-soft: #1c3039;
	--fbh-cream: #f3eee4;
	--fbh-paper: #fbf8f2;
	--fbh-white: #fff;
	--fbh-orange: #e5522d;
	--fbh-orange-dark: #c83d1f;
	--fbh-gold: #d5a955;
	--fbh-blue: #bcd7df;
	--fbh-line: rgba(16, 33, 42, .16);
	--fbh-shadow: 0 24px 60px rgba(10, 27, 36, .16);
	--fbh-shell: 1240px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--fbh-paper);
	color: var(--fbh-ink);
	font-family: "Inter", Arial, sans-serif;
}

body.home .neve-main > .container,
body.home .nv-content-wrap,
body.home .container.single-page-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.home .nv-single-page-wrap {
	margin: 0;
}

body.home .nv-page-title-wrap {
	display: none;
}

.fbh-site-main,
.fbh-site-main * {
	box-sizing: border-box;
}

.fbh-site-main {
	overflow: hidden;
	background: var(--fbh-paper);
	color: var(--fbh-ink);
	font-size: 16px;
	line-height: 1.7;
}

.fbh-site-main h1,
.fbh-site-main h2,
.fbh-site-main h3,
.fbh-site-main p,
.fbh-site-main figure {
	margin-top: 0;
}

.fbh-site-main h1,
.fbh-site-main h2,
.fbh-site-main h3 {
	color: inherit;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-weight: 800;
	line-height: .94;
	letter-spacing: -.025em;
}

.fbh-site-main h2 {
	margin-bottom: 26px;
	font-size: clamp(3rem, 6vw, 6rem);
	text-transform: uppercase;
}

.fbh-site-main h3 {
	font-size: 2rem;
}

.fbh-site-main a {
	color: inherit;
}

.fbh-shell {
	width: min(calc(100% - 48px), var(--fbh-shell));
	margin-inline: auto;
}

.fbh-section {
	padding: clamp(80px, 10vw, 150px) 0;
}

.fbh-kicker {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 22px;
	color: var(--fbh-cream);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .86rem;
	font-weight: 700;
	letter-spacing: .17em;
	line-height: 1.2;
	text-transform: uppercase;
}

.fbh-kicker::before {
	width: 34px;
	height: 2px;
	background: var(--fbh-orange);
	content: "";
}

.fbh-kicker-dark {
	color: var(--fbh-ink);
}

.fbh-kicker-light {
	color: var(--fbh-cream);
}

.fbh-richtext > :last-child {
	margin-bottom: 0;
}

.fbh-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.fbh-button {
	display: inline-flex;
	min-height: 54px;
	padding: 14px 22px;
	border: 2px solid transparent;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .98rem;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.fbh-button:hover,
.fbh-button:focus {
	transform: translateY(-2px);
}

.fbh-button-primary {
	background: var(--fbh-orange);
	color: var(--fbh-white) !important;
}

.fbh-button-primary:hover,
.fbh-button-primary:focus {
	background: var(--fbh-orange-dark);
}

.fbh-button-glass {
	border-color: rgba(255, 255, 255, .55);
	background: rgba(16, 33, 42, .26);
	color: var(--fbh-white) !important;
	backdrop-filter: blur(8px);
}

.fbh-button-dark {
	background: var(--fbh-ink);
	color: var(--fbh-white) !important;
}

.fbh-button-light {
	background: var(--fbh-cream);
	color: var(--fbh-ink) !important;
}

.fbh-button-outline-light {
	border-color: rgba(255, 255, 255, .5);
	color: var(--fbh-white) !important;
}

.fbh-text-link {
	display: inline-flex;
	padding-bottom: 4px;
	border-bottom: 2px solid var(--fbh-orange);
	gap: 10px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .94rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.fbh-text-link-light {
	border-color: var(--fbh-gold);
	color: var(--fbh-white) !important;
}

/* Neve-Kopfbereich */
.header-main-inner {
	background: rgba(251, 248, 242, .98) !important;
	border-bottom: 1px solid rgba(16, 33, 42, .09);
}

.site-logo img {
	max-height: 70px;
}

.builder-item--primary-menu .nav-menu-primary > .nav-ul li > a {
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.builder-item--primary-menu .nav-menu-primary > .nav-ul li.current-menu-item > a,
.builder-item--primary-menu .nav-menu-primary > .nav-ul li > a:hover {
	color: var(--fbh-orange) !important;
}

/* Hero */
.fbh-hero {
	position: relative;
	min-height: min(860px, calc(100vh - 70px));
	display: flex;
	align-items: stretch;
	background: var(--fbh-ink);
	color: var(--fbh-white);
	isolation: isolate;
}

.fbh-hero-media,
.fbh-hero-shade {
	position: absolute;
	inset: 0;
}

.fbh-hero-media {
	z-index: -2;
	background-position: center;
	background-size: cover;
	transform: scale(1.002);
}

.fbh-hero-shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(8, 23, 31, .9) 0%, rgba(8, 23, 31, .64) 45%, rgba(8, 23, 31, .12) 78%),
		linear-gradient(0deg, rgba(8, 23, 31, .55) 0%, transparent 46%);
}

.fbh-hero-inner {
	display: grid;
	min-height: 760px;
	padding-top: clamp(90px, 12vw, 170px);
	padding-bottom: 150px;
	grid-template-columns: minmax(0, 1fr) 420px;
	align-items: end;
	gap: 80px;
}

.fbh-hero-copy {
	max-width: 760px;
}

.fbh-hero h1 {
	max-width: 780px;
	margin-bottom: 28px;
	color: var(--fbh-white);
	font-size: clamp(4.6rem, 10vw, 9.6rem);
	line-height: .78;
	text-transform: uppercase;
	text-wrap: balance;
}

.fbh-hero-lead {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, .86);
	font-size: clamp(1rem, 1.6vw, 1.24rem);
	line-height: 1.6;
}

.fbh-hero-facts {
	display: grid;
	align-self: end;
	border-top: 1px solid rgba(255, 255, 255, .42);
}

.fbh-hero-facts > div {
	display: grid;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	grid-template-columns: 125px 1fr;
	align-items: baseline;
	gap: 16px;
}

.fbh-hero-facts strong {
	color: var(--fbh-gold);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.fbh-hero-facts span {
	color: rgba(255, 255, 255, .78);
	font-size: .86rem;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.fbh-announcement {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--fbh-orange);
}

.fbh-announcement-inner {
	display: grid;
	min-height: 78px;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.fbh-announcement-inner > span {
	padding: 6px 10px;
	background: var(--fbh-ink);
	color: var(--fbh-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.fbh-announcement-inner strong {
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: clamp(1.1rem, 2vw, 1.55rem);
	font-weight: 700;
	letter-spacing: .02em;
}

.fbh-announcement-inner a {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
}

/* Wetter */
.fbh-weather-band {
	padding: 34px 0 30px;
	background: var(--fbh-ink);
	color: var(--fbh-white);
}

.fbh-weather-band .fbh-weather {
	margin: 0;
	padding: 0;
	background: transparent;
	color: inherit;
}

.fbh-weather-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, .2);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.fbh-weather-cell {
	padding: 22px 28px;
	border-right: 1px solid rgba(255, 255, 255, .18);
}

.fbh-weather-cell:first-child {
	padding-left: 0;
}

.fbh-weather-cell:last-child {
	border-right: 0;
}

.fbh-weather-k,
.fbh-weather-sub,
.fbh-weather-meta {
	font-size: .67rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.fbh-weather-k {
	margin-bottom: 4px;
	color: var(--fbh-blue);
	font-weight: 700;
}

.fbh-weather-v {
	color: var(--fbh-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 2.15rem;
	font-weight: 800;
	line-height: 1.1;
}

.fbh-weather-accent {
	color: var(--fbh-gold);
}

.fbh-weather-sub {
	margin-top: 4px;
	color: rgba(255, 255, 255, .58);
	letter-spacing: .04em;
	text-transform: none;
}

.fbh-weather-meta {
	display: flex;
	margin-top: 14px;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, .46);
	letter-spacing: .04em;
	text-transform: none;
}

.fbh-weather-dot {
	width: 7px;
	height: 7px;
	margin-right: 3px;
	border-radius: 50%;
	background: #5ed28a;
	box-shadow: 0 0 0 4px rgba(94, 210, 138, .12);
}

.fbh-weather.is-stale .fbh-weather-dot {
	background: var(--fbh-gold);
}

/* Über uns */
.fbh-about {
	background: var(--fbh-paper);
}

.fbh-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
	align-items: center;
	gap: clamp(60px, 8vw, 120px);
}

.fbh-about-copy {
	max-width: 690px;
}

.fbh-about-copy .fbh-richtext {
	font-size: 1.07rem;
}

.fbh-about-image {
	position: relative;
	margin-bottom: 0;
}

.fbh-about-image::before {
	position: absolute;
	top: -24px;
	right: -24px;
	width: 52%;
	height: 45%;
	border: 3px solid var(--fbh-orange);
	content: "";
}

.fbh-about-image img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	display: block;
	object-fit: cover;
	box-shadow: var(--fbh-shadow);
}

.fbh-about-image figcaption {
	position: absolute;
	right: -20px;
	bottom: 28px;
	max-width: 240px;
	padding: 13px 18px;
	background: var(--fbh-ink);
	color: var(--fbh-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fbh-icon-facts {
	display: flex;
	margin-top: 38px;
	padding-top: 26px;
	border-top: 1px solid var(--fbh-line);
	flex-wrap: wrap;
	gap: 14px 28px;
}

.fbh-icon-facts > div {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .82rem;
}

.fbh-icon-facts span {
	color: var(--fbh-orange);
	font-size: .7rem;
}

/* Unterkünfte */
.fbh-rooms {
	background: var(--fbh-ink-soft);
	color: var(--fbh-white);
}

.fbh-section-heading {
	display: grid;
	margin-bottom: 58px;
	grid-template-columns: 1.2fr .8fr;
	align-items: end;
	gap: 60px;
}

.fbh-section-heading h2 {
	margin-bottom: 0;
}

.fbh-section-heading > p {
	max-width: 530px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .68);
}

.fbh-room-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.fbh-room-card {
	display: grid;
	min-height: 350px;
	background: var(--fbh-paper);
	color: var(--fbh-ink);
	grid-template-columns: 48% 52%;
	transition: transform .24s ease;
}

.fbh-room-card:hover {
	transform: translateY(-6px);
}

.fbh-room-image {
	position: relative;
	min-height: 350px;
	overflow: hidden;
}

.fbh-room-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .5s ease;
}

.fbh-room-card:hover .fbh-room-image img {
	transform: scale(1.04);
}

.fbh-room-image > span {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 7px 10px;
	background: var(--fbh-orange);
	color: var(--fbh-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.fbh-room-body {
	display: flex;
	padding: clamp(26px, 4vw, 44px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.fbh-room-body h3 {
	margin-bottom: 14px;
	font-size: clamp(2.1rem, 3vw, 3.2rem);
	text-transform: uppercase;
}

.fbh-room-body h3 a {
	text-decoration: none;
}

.fbh-room-body p {
	margin-bottom: 14px;
	color: #53616a;
	font-size: .9rem;
}

.fbh-room-body .fbh-room-capacity {
	margin-bottom: 6px;
	color: var(--fbh-orange);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .86rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.fbh-room-body .fbh-text-link {
	margin-top: auto;
}

/* Veranstaltungen */
.fbh-events {
	background: #091820;
	color: var(--fbh-white);
}

.fbh-event-grid {
	display: grid;
	margin-bottom: 48px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.fbh-event-card {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, .16);
	background: var(--fbh-ink-soft);
}

.fbh-event-image {
	position: relative;
	aspect-ratio: 4 / 3;
	display: block;
	background-position: center;
	background-size: cover;
	text-decoration: none;
}

.fbh-event-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 13, 18, .5), transparent 65%);
	content: "";
}

.fbh-event-tag {
	position: absolute;
	z-index: 1;
	top: 16px;
	left: 16px;
	padding: 6px 9px;
	background: var(--fbh-orange);
	color: var(--fbh-white);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fbh-event-body {
	padding: 28px;
}

.fbh-event-body time {
	display: block;
	margin-bottom: 10px;
	color: var(--fbh-gold);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.fbh-event-body h3 {
	margin-bottom: 14px;
	font-size: 2.25rem;
	text-transform: uppercase;
}

.fbh-event-body h3 a {
	text-decoration: none;
}

.fbh-event-body p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .62);
	font-size: .88rem;
}

.fbh-event-fallback {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.fbh-event-fallback > article,
.fbh-event-empty {
	min-height: 250px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .18);
}

.fbh-event-fallback > article:first-child {
	background:
		linear-gradient(rgba(8, 23, 31, .45), rgba(8, 23, 31, .82)),
		url("../images/img-10-1.jpg") center / cover;
}

.fbh-event-fallback > article:nth-child(2) {
	background:
		linear-gradient(rgba(8, 23, 31, .4), rgba(8, 23, 31, .82)),
		url("../images/img-8.jpg") center / cover;
}

.fbh-event-fallback span {
	color: var(--fbh-gold);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.fbh-event-fallback h3 {
	margin: 62px 0 8px;
	font-size: 2.7rem;
	text-transform: uppercase;
}

.fbh-event-empty {
	display: flex;
	background: rgba(255, 255, 255, .04);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.fbh-event-empty p {
	color: rgba(255, 255, 255, .68);
}

/* Gruppen */
.fbh-groups {
	background: var(--fbh-cream);
}

.fbh-groups-layout {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: clamp(60px, 10vw, 140px);
}

.fbh-groups-layout > div:first-child {
	position: sticky;
	top: 120px;
}

.fbh-groups-layout .fbh-button {
	margin-top: 30px;
}

.fbh-group-cards {
	border-top: 1px solid var(--fbh-line);
}

.fbh-group-cards article {
	display: grid;
	padding: 34px 0;
	border-bottom: 1px solid var(--fbh-line);
	grid-template-columns: 60px 190px 1fr;
	align-items: start;
	gap: 20px;
}

.fbh-group-cards strong {
	color: var(--fbh-orange);
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 1.45rem;
}

.fbh-group-cards h3 {
	margin-bottom: 0;
	font-size: 1.7rem;
	text-transform: uppercase;
}

.fbh-group-cards p {
	margin-bottom: 0;
	color: #56636a;
	font-size: .9rem;
}

/* Winter */
.fbh-winter {
	position: relative;
	min-height: 820px;
	display: flex;
	padding: 0;
	align-items: stretch;
	background: var(--fbh-ink);
	color: var(--fbh-white);
}

.fbh-winter-image {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
}

.fbh-winter-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 23, 31, .87), rgba(8, 23, 31, .18) 65%);
	content: "";
}

.fbh-winter-inner {
	position: relative;
	display: flex;
	padding-block: 110px;
	align-items: center;
}

.fbh-winter-card {
	max-width: 620px;
	padding: clamp(34px, 6vw, 70px);
	background: rgba(9, 24, 32, .9);
	box-shadow: var(--fbh-shadow);
	backdrop-filter: blur(5px);
}

.fbh-winter-card h2 {
	font-size: clamp(3.3rem, 6vw, 6.1rem);
}

.fbh-winter-card .fbh-richtext {
	color: rgba(255, 255, 255, .75);
}

.fbh-winter-card .fbh-text-link {
	margin-top: 22px;
}

/* Galerie */
.fbh-gallery {
	background: var(--fbh-paper);
}

.fbh-gallery-head {
	display: flex;
	margin-bottom: 52px;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
}

.fbh-gallery-head h2 {
	margin-bottom: 0;
}

.fbh-gallery-head > p {
	margin-bottom: 12px;
	color: #66747b;
}

.fbh-gallery-grid {
	display: grid;
	min-height: 620px;
	grid-template-columns: 1.25fr .75fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}

.fbh-gallery-grid figure {
	overflow: hidden;
	margin-bottom: 0;
}

.fbh-gallery-grid img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .6s ease;
}

.fbh-gallery-grid figure:hover img {
	transform: scale(1.025);
}

.fbh-gallery-a {
	grid-row: 1 / 3;
}

/* Webcam */
.fbh-webcam {
	padding: clamp(75px, 9vw, 125px) 0;
	background: var(--fbh-blue);
}

.fbh-webcam-layout {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.fbh-webcam-copy h2 {
	margin-bottom: 24px;
}

.fbh-webcam-copy > p:not(.fbh-kicker) {
	color: #3f555f;
}

.fbh-mini-weather {
	display: grid;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(16, 33, 42, .25);
	gap: 5px;
}

.fbh-mini-weather strong {
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: 3rem;
	line-height: 1;
}

.fbh-mini-weather > span {
	color: #4d626b;
	font-size: .82rem;
}

.fbh-webcam-image {
	position: relative;
	margin-bottom: 0;
	box-shadow: var(--fbh-shadow);
}

.fbh-webcam-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
}

.fbh-webcam-image figcaption {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 12px;
	background: rgba(9, 24, 32, .88);
	color: var(--fbh-white);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.fbh-webcam-image figcaption span {
	color: #ee5341;
}

/* Kontakt */
.fbh-contact {
	padding: clamp(85px, 10vw, 145px) 0 70px;
	background: var(--fbh-orange);
	color: var(--fbh-white);
}

.fbh-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(60px, 10vw, 140px);
}

.fbh-contact h2 {
	color: var(--fbh-white);
}

.fbh-contact-grid > div > p:not(.fbh-kicker) {
	max-width: 540px;
}

.fbh-contact-grid .fbh-button {
	margin-top: 28px;
}

.fbh-contact address {
	display: grid;
	font-style: normal;
}

.fbh-contact address > div {
	display: grid;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .34);
	grid-template-columns: 180px 1fr;
	gap: 20px;
	font-size: 1.02rem;
}

.fbh-contact address > div > span {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.fbh-contact address a {
	color: var(--fbh-white);
	font-weight: 600;
	text-decoration-color: rgba(255, 255, 255, .5);
}

.fbh-notes {
	display: grid;
	margin-top: 90px;
	padding-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, .34);
	grid-template-columns: 1fr 1fr;
	gap: 70px;
}

.fbh-notes strong {
	display: block;
	margin-bottom: 10px;
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: .86rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fbh-notes p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
}

.fbh-site-closing {
	padding: 26px 0;
	background: var(--fbh-ink);
	color: rgba(255, 255, 255, .72);
	font-size: .74rem;
}

.fbh-site-closing .fbh-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.fbh-site-closing p {
	margin-bottom: 0;
}

.fbh-site-closing div div {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.fbh-site-closing a {
	color: var(--fbh-white);
	text-decoration: none;
}

/* Veranstaltungseinzel- und Archivseiten */
.fbh-archive,
.fbh-single-event {
	padding: 80px 0 120px;
	background: var(--fbh-paper);
}

.fbh-archive-header,
.fbh-single-event-header {
	margin-bottom: 55px;
}

.fbh-archive h1,
.fbh-single-event h1 {
	font-family: "Barlow Condensed", Arial, sans-serif;
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 800;
	line-height: .9;
	text-transform: uppercase;
}

.fbh-archive .fbh-event-grid {
	color: var(--fbh-white);
}

.fbh-single-event-layout {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 70px;
}

.fbh-single-event-layout img {
	width: 100%;
	height: auto;
}

.fbh-single-event-meta {
	margin-bottom: 20px;
	color: var(--fbh-orange);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.fbh-hero-inner {
		grid-template-columns: minmax(0, 1fr) 310px;
		gap: 50px;
	}

	.fbh-split {
		grid-template-columns: 1fr 420px;
		gap: 60px;
	}

	.fbh-room-card {
		display: block;
	}

	.fbh-room-image {
		min-height: 260px;
		aspect-ratio: 4 / 3;
	}

	.fbh-room-body {
		min-height: 280px;
	}
}

@media (max-width: 900px) {
	.fbh-shell {
		width: min(calc(100% - 36px), var(--fbh-shell));
	}

	.fbh-hero {
		min-height: 850px;
	}

	.fbh-hero-inner {
		min-height: 770px;
		padding-top: 100px;
		grid-template-columns: 1fr;
		align-content: end;
		gap: 35px;
	}

	.fbh-hero-copy {
		max-width: 680px;
	}

	.fbh-hero-facts {
		display: none;
	}

	.fbh-hero-shade {
		background:
			linear-gradient(0deg, rgba(8, 23, 31, .94) 0%, rgba(8, 23, 31, .52) 58%, rgba(8, 23, 31, .16) 100%);
	}

	.fbh-announcement-inner {
		grid-template-columns: auto 1fr;
	}

	.fbh-announcement-inner a {
		display: none;
	}

	.fbh-split,
	.fbh-groups-layout,
	.fbh-webcam-layout,
	.fbh-contact-grid,
	.fbh-single-event-layout {
		grid-template-columns: 1fr;
	}

	.fbh-split {
		gap: 70px;
	}

	.fbh-about-image {
		max-width: 650px;
		margin-inline: auto;
	}

	.fbh-about-image img {
		aspect-ratio: 4 / 3;
	}

	.fbh-section-heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.fbh-event-grid,
	.fbh-event-fallback {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fbh-event-empty {
		grid-column: 1 / -1;
	}

	.fbh-groups-layout > div:first-child {
		position: static;
	}

	.fbh-winter {
		min-height: 720px;
	}

	.fbh-gallery-grid {
		min-height: 520px;
	}

	.fbh-webcam-copy {
		max-width: 620px;
	}
}

@media (max-width: 680px) {
	.fbh-shell {
		width: min(calc(100% - 28px), var(--fbh-shell));
	}

	.fbh-section {
		padding: 75px 0;
	}

	.fbh-site-main h2 {
		font-size: clamp(2.8rem, 15vw, 4.5rem);
	}

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

	.fbh-hero-inner {
		min-height: 690px;
		padding-top: 70px;
		padding-bottom: 120px;
	}

	.fbh-hero h1 {
		font-size: clamp(4rem, 21vw, 6.3rem);
	}

	.fbh-hero-lead {
		font-size: .96rem;
	}

	.fbh-button-row,
	.fbh-button-row .fbh-button {
		width: 100%;
	}

	.fbh-announcement-inner {
		min-height: 86px;
		gap: 12px;
	}

	.fbh-announcement-inner > span {
		align-self: center;
	}

	.fbh-announcement-inner strong {
		font-size: 1rem;
		line-height: 1.25;
	}

	.fbh-weather-row {
		grid-template-columns: 1fr;
	}

	.fbh-weather-cell,
	.fbh-weather-cell:first-child {
		padding: 15px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .16);
	}

	.fbh-weather-cell:last-child {
		border-bottom: 0;
	}

	.fbh-weather-v {
		font-size: 1.8rem;
	}

	.fbh-weather-meta {
		display: block;
		line-height: 1.5;
	}

	.fbh-weather-dot {
		display: inline-block;
	}

	.fbh-about-image::before {
		top: -13px;
		right: -9px;
	}

	.fbh-about-image figcaption {
		right: 10px;
		bottom: 12px;
	}

	.fbh-icon-facts {
		display: grid;
	}

	.fbh-room-grid,
	.fbh-event-grid,
	.fbh-event-fallback {
		grid-template-columns: 1fr;
	}

	.fbh-room-image {
		min-height: 250px;
	}

	.fbh-room-body {
		min-height: 250px;
	}

	.fbh-event-empty {
		grid-column: auto;
	}

	.fbh-group-cards article {
		grid-template-columns: 46px 1fr;
		gap: 12px;
	}

	.fbh-group-cards article p {
		grid-column: 2;
	}

	.fbh-winter {
		min-height: auto;
	}

	.fbh-winter-inner {
		padding-block: 75px;
	}

	.fbh-winter-card {
		padding: 30px 24px;
	}

	.fbh-gallery-head {
		display: block;
	}

	.fbh-gallery-grid {
		min-height: 0;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.fbh-gallery-grid figure,
	.fbh-gallery-a {
		aspect-ratio: 4 / 3;
		grid-row: auto;
	}

	.fbh-contact address > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.fbh-notes {
		margin-top: 60px;
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.fbh-site-closing .fbh-shell {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	.fbh-button,
	.fbh-room-card,
	.fbh-room-image img,
	.fbh-gallery-grid img {
		transition: none;
	}
}
