:root {
	--paper: #f6f5ef;
	--soft: #ebe7dc;
	--ink: #252d35;
	--muted: rgba(0,0,0,0.66);
	--line: rgba(37, 45, 53, 0.18);
	--gold: #8c5c19;
	--white: #fffdfa;
	--dark: oklch(28% .04 245);
	--display: "Fraunces", Georgia, serif;
	--body: "Inter Tight", Arial, sans-serif;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: #000;  /* Stupid WCAG test vs transparent light header over video  */
	color: #fff;
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
	text-decoration: none;
}
img,
video {
	display: block;
	max-width: 100%;
}
main
{
	background: var(--paper);
	color: var(--ink);
}
main a img:hover
{
	/*
	cursor: -moz-zoom-in; 
	cursor: -webkit-zoom-in; 
	cursor: zoom-in;
	*/
	cursor: default;

}


#hero-video
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	inset: calc(var(--spacing)* 0);
	position: absolute;
	vertical-align: middle;
	display: block;
}
.shell {
	width: min(100% - 3rem, 80rem);
	margin-inline: auto;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.eyebrow {
	margin: 0;
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	line-height: 1.2;
	text-transform: uppercase;
}
.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem max(1.5rem, calc((100vw - 80rem) / 2));
	color: var(--white);
	transition: background 0.35s ease, padding 0.35s ease, color 0.35s ease;
}
.site-header.is-scrolled {
	background: rgba(246, 245, 239, 0.94);
	backdrop-filter: blur(12px);
	color: var(--ink);
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
	box-shadow: 0 1px 0 var(--line);
	z-index: 100;
}
.brand {
	display: flex;
	flex-direction: row;
	font-family: var(--display);
	font-size: 1.12rem;
	line-height: 1;
}
.site-header:not(.is-scrolled) a {
	filter: drop-shadow(0px 0px 3px #00000055);
}

.brand small {
	margin-top: 0.35rem;
	font-family: var(--body);
	font-size: 0.70rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.7;
}
.brand img
{
	width: 2rem;
	height: 2rem;
	margin: 0 0.6rem 0 0;
	transition: filter 0.35s ease;
}
.site-header.is-scrolled .brand img {
	filter: invert(1);
}
.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	font-size: 0.9rem;
}
.site-nav a {
	transition: color 0.2s ease;
}
.site-nav a:not(.nav-book):hover {
	border-bottom: 1px solid currentColor;
	position: relative;
	top: 1px;
}
.nav-book {
	border: 1px solid currentColor;
	border-radius: 999px;
	padding: 0.55rem 1.15rem;
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}
.menu-toggle {
	display: none;
	background: none;
	border: 0;
	color: currentColor;
}
.hero {
	position: relative;
	min-height: 100svh;
	height: 100svh;
	overflow: hidden;
	color: var(--white);
	background: #56666d;
}
.hero-media,
.hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-overlay {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.4),
		rgba(0, 0, 0, 0.12) 50%,
		rgba(0, 0, 0, 0.62)
	);
}
.hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 9rem;
	display: none;
}
.hero-kicker {
	color: rgba(255, 255, 255, 0.8);
}
h1,
h2,
h3 {
	font-family: var(--display);
	letter-spacing: -.02em;
	font-weight: 400;
}
h1,
h2 {
	margin: 0.9rem 0 0;
	font-size: 3.6rem;
	line-height: 1.24;
}
h3 {
	margin: 0.7rem 0 0;
	font-size: 1.9rem;
	line-height: 1.15;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	border-radius: 999px;
	padding: 0.85rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 400;
	transition: transform 0.2s ease, background 0.2s ease;
	text-decoration: none !important;
}
.button:hover {
	transform: translateY(-2px);
}
.button-light {
	background: var(--white);
	color: var(--ink);
}
.button-dark {
	background: var(--ink);
	color: var(--white);
}
.scroll-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.9rem;
	color: var(--white);
}
.scroll-link span {
	font-size: 1.25rem;
}
.section {
	padding-block: clamp(5rem, 11vw, 10rem);
}
.intro {
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: clamp(3rem, 9vw, 9rem);
}
.intro-heading h2 {
	max-width: 30rem;
}
.intro-copy {
	padding-top: 2.4rem;
}
.intro-actions {
	display: none;
}
.lead {
	margin: 0;
	opacity: 0.8;
	font-size: 1.1rem;
	line-height: 1.6;
}
.rule {
	height: 1px;
	margin: 2.5rem 0;
	border-top: 1px solid var(--line);
}
.facts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 2.5rem;
	margin: 0;
}
.facts dt {
	color: var(--gold);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.facts dd {
	margin: 0.45rem 0 0;
	font-family: var(--display);
	font-size: 1.15rem;
	line-height: 1.45;
}
.section-soft {
	background: var(--soft);
}
.section-heading {
	max-width: 52rem;
}
.split-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 3rem;
	max-width: none;
}
.split-heading > div {
	max-width: 42rem;
}
.split-heading > p {
	max-width: 20rem;
	margin: 0 0 0.25rem;
	color: var(--muted);
}




.card-grid {
	display: grid;
	gap: 1.5rem;
}
.image-card {
	overflow: hidden;
	background: var(--white);
}
.image-card-large {
	grid-row: span 2;
}
.card-image {
	aspect-ratio: 5/4;
	overflow: hidden;
}
.card-image          > a,
.wellness-media      > a,
.gallery-grid figure > a {
	display: block;
	width: 100%;
	height: 100%;
}
.card-image          > a:focus-visible,
.wellness-media      > a:focus-visible,
.gallery-grid figure > a:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: -3px;
}
.image-card-large .card-image {
	aspect-ratio: 5/4;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.image-card:hover .card-image img {
	transform: scale(1.045);
}
.card-body {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem;
}
.card-body p:not(.eyebrow) {
	max-width: 28rem;
	margin: 0.85rem 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.5;
}
.tag {
	flex: none;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.32rem 0.65rem;
	color: var(--muted);
	font-size: 0.87rem;
	white-space: nowrap;
}

.dining-grid {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: 2fr 1fr 2fr;
	grid-template-rows: 1fr 1fr;
	grid-column-gap: 1.5rem;
	grid-row-gap: 1.5rem; 
}
.dining-grid .image-card:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
.dining-grid .image-card:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
.dining-grid .image-card:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
.dining-grid .image-card:nth-child(4) { grid-area: 2 / 2 / 3 / 4; } 




.wellness {
	display: grid;
	align-items: start;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, auto);
	grid-column-gap: 0px;
	gap: 0 clamp(3rem, 4.2vw, 3.5rem);
}
.wellness-heading       { grid-area: 1 / 2 / 2 / 3; }
.wellness-copy          { grid-area: 2 / 2 / 3 / 3; }
.wellness-detail        { grid-area: 3 / 2 / 4 / 3; }
.wellness-primary-media { grid-area: 1 / 1 / 4 / 2; } 


.wellness-media {
	overflow: hidden;
}
.wellness-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.wellness-media img:hover {
	transform: scale(1.045);
}
.wellness-primary-media {
	position: relative;
	width: 100%;
	height: 100%;
}
.wellness-copy {
}
.wellness-copy h2 {
	margin-block: 1.25rem 1.5rem;
}
.wellness-copy > p:not(.eyebrow) {
	color: var(--muted);
	line-height: 1.65;
}
.wellness-detail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: center;
	margin-top: 2.4rem;
}
.wellness-detail-media {
	aspect-ratio: 1;
}
.amenities {
	list-style: none;
	padding: 0;
	margin: 0;
}
.amenities li {
	padding: 0.25rem 0 0.25rem 0.9rem;
	border-left: 1px solid var(--gold);
	font-family: var(--display);
}
.amenities li + li {
	margin-top: 0.7rem;
}
.amenities strong,
.amenities span {
	display: block;
}
.amenities span {
	color: var(--muted);
	font-family: var(--body);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}




.narrow-heading {
	max-width: 42rem;
}
.narrow-heading > p:last-child {
	max-width: 30rem;
	margin: 1.3rem 0 0;
	color: var(--muted);
}
.rooms-grid {
	grid-template-columns: 1fr 1fr;
	margin-top: 4rem;
}
.rooms .card-image {
	aspect-ratio: 4/3;
}
.gallery-grid {
	display: grid;
	grid-template-columns: 0.5fr 1fr 1fr;
	grid-template-rows: 15rem 15rem;
	gap: 1rem;
	margin-top: 4rem;


	display: grid;
	grid-template-columns: 1fr 0.9fr 0.6fr;
	grid-template-rows: repeat(2, min-content);
	grid-column-gap: 1.5rem;
	grid-row-gap: 1.5rem;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
	overflow: hidden;
}
.gallery-grid img:hover {
	transform: scale(1.045);
}
.gallery-grid figure { overflow: hidden; width: 100%; height: 100%; padding: 0; margin: 0; }
.gallery-grid figure:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.gallery-grid figure:nth-child(2) { grid-area: 1 / 2 / 2 / 4; }
.gallery-grid figure:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.gallery-grid figure:nth-child(4) { grid-area: 2 / 3 / 3 / 4; } 
.gallery-grid figure:nth-child(1) img { aspect-ratio: 1/1.4; padding-bottom: 12em; }
.gallery-grid figure:nth-child(2) img { aspect-ratio: 1/0.55; }
.gallery-grid figure:nth-child(3) img { aspect-ratio: 1/1; }
.gallery-grid figure:nth-child(4) img { aspect-ratio: 1/1.1; padding-bottom: 8em; } 


.visit {
	background: var(--dark);
	color: var(--white);
}
.visit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 10vw, 10rem);
}
.visit .lead
{
	color: var(--white);
	opacity: 0.6;
	margin-top: 1.75rem;
}
.visit-copy {
}
.visit-details {
	display: grid;
	grid-template-rows: 1fr 1fr 1fr;
	gap: 2rem;
	margin: 0 0 3rem 0;
}
.visit-details > div {
	border-top: 1px solid rgba(255,255,255,0.25);
	padding: 1.5rem 0 0.5rem 0;
}
.visit-details p {
	margin: 0.7rem 0 0;
	line-height: 1.6em !important;
	font-size: 1.2rem;
	font-family: var(--display);
}
.visit-details a {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.visit .eyebrow
{
	color: #c68f43;
}
#besuch-kontakt {
	scroll-margin-top: 12rem;
}




.site-footer {
	padding: 1.25rem 0;
	color: var(--white);
	font-size: 0.75rem;
	background-color: var(--dark);
}
.site-footer .shell {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.site-footer-links {
	display: flex;
	gap: 1rem
}
.site-footer-links a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px
}
.homepage .site-footer .shell {
	border-top: 1px solid #ffffff15;
	padding-top: 1.75rem;
	padding-bottom: 1rem;
}



.reveal {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}




@media (max-width: 72rem) {
	h1,
	h2 {
		margin: 0.9rem 0 0;
		font-size: 2.8rem;
		line-height: 1.24;
	}
}



@media (max-width: 58rem) {
	.shell {
		width: min(100% - 2rem, 38rem);
	}
	.site-header {
		padding: 1rem;
	}
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem;
		background: rgba(246, 245, 239, 0.99);
		backdrop-filter: blur(14px);
		color: var(--ink);
		box-shadow: 0 1rem 2rem rgba(37, 45, 53, 0.08);
		border-bottom: 2px solid rgba(0,0,0,0.2);
	}
	.site-nav.is-open {
		display: flex;
		padding-bottom: 2rem;
	}
	.site-nav a {
		padding: 1rem 1.2rem;
		font-weight: bold;
		font-size: 1.075rem;
		letter-spacing: 0.1em;
	}
	.nav-book {
		text-align: center;
		margin-top: 0.65rem;
	}
	.menu-toggle {
		display: grid;
		width: 2rem;
		gap: 0.35rem;
		padding: 0.35rem 0;
		cursor: pointer;
	}
	.menu-toggle > span:not(.sr-only) {
		border: 1px solid currentColor;
		width: 100%;
		background: currentColor;
		transition: transform 0.2s ease;
	}
	.menu-toggle.is-open > span:nth-child(2) {
		transform: translateY(0.2rem) rotate(45deg);
	}
	.menu-toggle.is-open > span:nth-child(3) {
		transform: translateY(-0.2rem) rotate(-45deg);
	}


	.hero-content {
		padding-bottom: 2rem;
		display: flex;
	}
	.hero {
		min-height: 22rem;
		height: 105vh;
	}
	.hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.9rem;
	}


	.intro,
	.wellness,
	.visit-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.wellness {
		gap: 1rem;
	}
	.wellness-detail {
		grid-template-columns: 1fr;
		margin: 1rem 0 1rem 0;
	}
	.wellness-heading       { grid-area: 1 / 1 / 2 / 2; }
	.wellness-copy          { grid-area: 2 / 1 / 3 / 2; }  
	.wellness-primary-media { grid-area: 3 / 1 / 4 / 2; } 
	.wellness-detail        { grid-area: 4 / 1 / 5 / 2; } 
	.wellness-primary-media img { aspect-ratio: 1/1.025; }



	.intro {
		padding-top: 3.5rem;
	}
	.intro-copy {
		padding-top: 0;
	}
	.intro-actions {
		display: block;
		margin-top: 2em;
	}
	.intro-actions a {
		width: 100%;
		text-transform: uppercase;
	}




	h1,
	h2 {
		font-size: 2.3rem;
	}
	h3
	{
		font-size: 1.5rem;
		line-height: 1.3em;
	}
	.split-heading {
		display: block;
	}
	.split-heading > p {
		margin-top: 1.5rem;
	}

	.booking-bar
	{
		display: none;
	}



	.dining-grid,
	.rooms-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1fr);
		margin-top: 2.5rem;
	}
	.dining-grid .image-card:nth-child(1) { grid-area: unset; }
	.dining-grid .image-card:nth-child(2) { grid-area: unset; }
	.dining-grid .image-card:nth-child(3) { grid-area: unset; }
	.dining-grid .image-card:nth-child(4) { grid-area: unset; } 




	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1fr, min-content);
	}
	.gallery-grid figure:nth-child(1),
	.gallery-grid figure:nth-child(2),
	.gallery-grid figure:nth-child(3),
	.gallery-grid figure:nth-child(4) {
		grid-area: unset;
	}
	.gallery-grid figure:nth-child(1) img,
	.gallery-grid figure:nth-child(2) img,
	.gallery-grid figure:nth-child(3) img,
	.gallery-grid figure:nth-child(4) img {
		padding: 0;
	}


	.site-footer-links {
		order: 3
	}


	.visit-copy {
		padding-top: 0;
	}
	.visit-details {
		grid-template-columns: 1fr;
		margin: 2rem 0;
		gap: 1.5rem;
	}
	#besuch-kontakt {
		scroll-margin-top: 5rem;
	}


	.site-footer .shell {
		flex-direction: column;
	}
	.card-body {
		padding: 1.15rem;
		flex-direction: column;
	}
	.tag {
		align-self: flex-start;
	}
}


@media (max-width: 58rem) and (orientation: portrait) {
	.hero {
		min-height: 22rem;
		height: 60vh;
	}
	.hero::after{
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 65px;
		background: linear-gradient(0deg, #f6f5efff 0%, #f6f5ef00 100%);
	}
}


@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	video {
		display: none;
	}
	.card-image img,
	.reveal {
		transition: none;
	}
}




.hero-placeholder {
	background: linear-gradient(135deg, #89999e 0%, #496778 45%, #1f3947 100%);
}
.hero-placeholder::after {
	content: "VIDEO-PLATZHALTER";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.7rem;
	letter-spacing: 0.24em;
}
