/* =====================================================================
   Das blaue Haus – main.css
   Eigenes, schlankes Design-System. Kein Framework.
   Aufbau:
     1. Design-Tokens (CSS Custom Properties)
     2. Lokale Schriften (@font-face – Dateien siehe README)
     3. Reset & Basis
     4. Typografie
     5. Layout-Utilities (container, section, split)
     6. Buttons & Links
     7. Header & Navigation
     8. Hero
     9. Sektionen: Intro, Features, Booking, Galerie, Lage, Stimmen, FAQ, Kontakt
    10. Footer & Sticky-CTA
    11. Seiten/Inhalt (rich-text)
    12. Zugänglichkeit & Reduced Motion
   ===================================================================== */

/* ----------------------------------------------------------------
   1. Design-Tokens
   ---------------------------------------------------------------- */
:root {
	/* Farbwelt – maritim & warm */
	--c-paper: #f7f2e9;   /* Cremeweiß – Grundfläche */
	--c-sand:  #ece0cb;   /* Sand */
	--c-beige: #dccba8;   /* warmes Beige */
	--c-haze:  #9db1bc;   /* helles Grau-Blau */
	--c-sea:   #34536a;   /* mittleres Nordsee-Blau */
	--c-deep:  #1e394a;   /* dunkles Nordsee-Blau – Überschriften/Buttons */
	--c-ink:   #20323d;   /* Fließtext */
	--c-sage:  #8e9c82;   /* Salbeigrün */
	--c-wood:  #a9744b;   /* Naturholz – warmer Akzent */
	--c-coral: #c25a43;   /* Strandkorb-Rot – sehr sparsamer Signal-Akzent */
	--c-white: #ffffff;

	--c-line:  rgba(30, 57, 74, 0.14);   /* Haarlinien */
	--c-muted: rgba(32, 50, 61, 0.62);   /* gedämpfter Text */

	/* Typografie */
	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Fluider Typo-Maßstab (clamp: min .. ideal .. max) */
	--fs-xxl: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);
	--fs-xl:  clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
	--fs-lg:  clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
	--fs-md:  clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
	--fs-base: 1.05rem;
	--fs-sm:  0.9rem;
	--fs-xs:  0.78rem;

	--lh-tight: 1.12;
	--lh-snug: 1.3;
	--lh-base: 1.7;

	/* Abstände (8er-Raster, fluide Sektionen) */
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-5: 3rem;
	--space-6: 4rem;
	--section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

	/* Maße */
	--container: 1200px;
	--container-narrow: 760px;
	--radius: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	/* Schatten – weich, ruhig */
	--shadow-sm: 0 2px 10px rgba(30, 57, 74, 0.06);
	--shadow-md: 0 12px 36px rgba(30, 57, 74, 0.1);

	/* Bewegung */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--dur: 0.35s;

	--header-h: 84px;
}

/* ----------------------------------------------------------------
   2. Lokale Schriften – lokal gehostet (DSGVO-freundlich, performant).
   Latin-Subset (deckt deutschen Text inkl. ä/ö/ü/ß ab).
   Mulish ist eine Variable Font: eine Datei deckt die Stärken 400–700 ab.
   ---------------------------------------------------------------- */
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
/* Echter Bold-Schnitt (latin-Subset) – für gezielte Hervorhebungen wie das Wort „blaue"
   im Hero-Titel. Ohne diese Datei wäre 700 nur synthetisches Faux-Bold (optisch zu schwach,
   da 600 bereits Semibold ist). */
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Mulish";
	src: url("../fonts/mulish.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}
/* ExtraBold-Schnitt (latin-Subset) – für die kräftigere Navigation (Wunsch: „fetter").
   Die Variable-Datei oben deckt nur 400–700 ab; 800 wäre sonst nur synthetisch. */
@font-face {
	font-family: "Mulish";
	src: url("../fonts/mulish-800.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* ----------------------------------------------------------------
   3. Reset & Basis
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: var(--lh-base);
	color: var(--c-ink);
	background-color: var(--c-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--c-sea); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--c-deep); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; cursor: pointer; }

/* ----------------------------------------------------------------
   4. Typografie
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: var(--lh-tight);
	color: var(--c-deep);
	margin: 0 0 var(--space-3);
	letter-spacing: -0.01em;
}

p { margin: 0 0 var(--space-3); }

.lead {
	font-size: var(--fs-md);
	line-height: 1.6;
	color: var(--c-ink);
}

.section__eyebrow {
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-sage);
	margin: 0 0 var(--space-2);
}

.section__title { font-size: var(--fs-xl); }
.section__head { margin-bottom: var(--space-5); }
.section__note { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-3); }

/* Platzhalter sichtbar markieren */
.bh-placeholder {
	display: inline-block;
	padding: 0.1em 0.5em;
	border: 1px dashed var(--c-wood);
	border-radius: var(--radius-pill);
	color: var(--c-wood);
	font-size: 0.85em;
}

/* ----------------------------------------------------------------
   5. Layout-Utilities
   ---------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.2rem, 0.5rem + 3vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--center { text-align: center; }
.section--center .lead { margin-inline: auto; }

/* Das Giebel-Symbol als feiner Sektions-Akzent */
.section-mark { color: var(--c-haze); margin: 0 auto var(--space-2); }

/* Haus-Marke: Favicon als gerundetes Badge (ersetzt das Dreieck an dekorativen Stellen) */
.bh-mark {
	display: inline-block;
	border-radius: 26%;
	box-shadow: 0 4px 14px rgba(15, 30, 40, 0.18);
	vertical-align: top;
}

/* Zweispaltiger Bild/Text-Block */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
}
.split__figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__body .section__title { margin-bottom: var(--space-3); }

/* ----------------------------------------------------------------
   6. Buttons & Links
   ---------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.85em 1.6em;
	border-radius: var(--radius-pill);
	border: 1.5px solid transparent;
	font-weight: 600;
	font-size: var(--fs-sm);
	letter-spacing: 0.02em;
	line-height: 1;
	transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background-color: var(--c-deep); color: var(--c-paper); }
.btn--primary:hover { background-color: var(--c-sea); color: var(--c-white); }

.btn--ghost { background-color: transparent; border-color: var(--c-line); color: var(--c-deep); }
.btn--ghost:hover { border-color: var(--c-deep); color: var(--c-deep); background-color: rgba(30,57,74,0.04); }

/* Ghost-Button über Bildern (Hero) */
.btn--on-image { border-color: rgba(255,255,255,0.7); color: var(--c-white); }
.btn--on-image:hover { background-color: rgba(255,255,255,0.14); border-color: var(--c-white); color: var(--c-white); }

.link-more {
	display: inline-block;
	font-weight: 600;
	color: var(--c-sea);
	margin-top: var(--space-3);
}
.link-more:hover { color: var(--c-deep); }

/* ----------------------------------------------------------------
   7. Header & Navigation
   ---------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--c-paper);
	border-bottom: 1px solid var(--c-line);
	transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header__inner {
	/* 3-Zonen-Grid: Marke links | Navigation MITTIG (auto-Spalte, exakt zentriert) | CTA rechts.
	   Die beiden 1fr-Außenspalten sind gleich breit → die mittlere Spalte sitzt echt mittig,
	   unabhängig von Logo- und Button-Breite. */
	display: grid;
	/* Linke Spalte etwas breiter als rechts → die mittlere (Navigation) rückt leicht nach rechts. */
	grid-template-columns: 1.2fr auto 1fr;
	align-items: center;
	gap: var(--space-3);
	min-height: var(--header-h);
	/* Header über die volle Breite (statt im 1200px-Container zentriert). */
	max-width: none;
}
/* Logo rechtsbündig in der linken Spalte, aber mit etwas Abstand zur Navigation (margin-right),
   damit es nicht an der Nav „klebt". */
.site-header__brand { justify-self: end; margin-right: clamp(1.5rem, 4vw, 4.5rem); }
.site-header__cta { justify-self: end; }

/* „Nordsee heute"-Panel im Hero-/Banner-Bild: Wetter + Tagesverlauf + nächste Tiden.
   Eigener Frosted-Hintergrund → über jedem Foto gut lesbar. */
.hero-status {
	z-index: 3;
	width: clamp(244px, 25vw, 308px);
	padding: 0.95rem 1.05rem 1.05rem;
	border-radius: var(--radius-lg);
	background: rgba(16, 32, 45, 0.72);
	-webkit-backdrop-filter: blur(16px) saturate(135%);
	backdrop-filter: blur(16px) saturate(135%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 12px 38px rgba(8, 18, 28, 0.42);
	color: #fff;
	text-shadow: none;
	font-size: var(--fs-sm);
	line-height: 1.2;
}
/* Wattenmeer-Foto als Backdrop (mit maritimer Abdunkelung → Text bleibt lesbar). */
.hero-status.has-bg {
	background-image:
		linear-gradient(155deg, rgba(14, 28, 40, 0.74) 0%, rgba(12, 24, 34, 0.64) 48%, rgba(9, 18, 27, 0.82) 100%),
		var(--panel-bg);
	background-size: cover;
	background-position: center;
	text-shadow: 0 1px 8px rgba(8, 16, 24, 0.5);
}
.hero .hero-status { position: absolute; bottom: clamp(1.5rem, 4vh, 2.5rem); right: clamp(1rem, 3vw, 2rem); }
.page-hero .hero-status { position: absolute; bottom: 1.1rem; right: clamp(1rem, 3vw, 2rem); }

.hero-status__head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; margin-bottom: 0.6rem; }
.hero-status__loc { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--c-beige); }
.hero-status__date { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.78); text-transform: capitalize; }

.hero-status__weather { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.65rem; }
.hero-status__wx-icon { font-size: 2.1rem; line-height: 0; flex: none; }
.hero-status__wx-icon .wx-svg { width: 1em; height: 1em; }
.hero-status__temp { font-family: var(--font-display); font-size: 1.95rem; line-height: 1; }
.hero-status__cond { font-weight: 600; color: rgba(255, 255, 255, 0.92); }

.hero-status__hours { list-style: none; margin: 0 0 0.7rem; padding: 0.6rem 0; border-top: 1px solid rgba(255, 255, 255, 0.16); border-bottom: 1px solid rgba(255, 255, 255, 0.16); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.3rem; }
.hero-status__hours li { display: flex; flex-direction: column; align-items: center; gap: 0.22rem; }
.hero-status__h-time { font-size: var(--fs-xs); font-weight: 700; color: var(--c-haze); }
.hero-status__hours .wx-svg { width: 1.4rem; height: 1.4rem; }
.hero-status__h-temp { font-size: var(--fs-xs); }

.hero-status__tides { display: grid; gap: 0.4rem; }
.hero-status__tide { display: flex; align-items: center; gap: 0.45rem; }
.hero-status__tide .tide-arrow { width: 1.2rem; height: 1.2rem; flex: none; }
.hero-status__tide--high .tide-arrow { color: #bcd8e6; }
.hero-status__tide--low .tide-arrow { color: #e8d9b6; }
.hero-status__tide-label { font-weight: 600; }
.hero-status__morgen { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.66); font-weight: 400; }
.hero-status__tide-time { margin-left: auto; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.hero-status__badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: #fff; background-color: var(--c-coral); border-radius: var(--radius-pill); padding: 0.12rem 0.45rem; }
.hero-status__tide.is-next .hero-status__tide-time { color: #ffd9ad; }

/* Mobil: „Nordsee heute"-Panel nur auf Desktop zeigen, auf Mobil ausblenden. */
@media (max-width: 768px) {
	/* Feste Höhe statt vh → die iOS-Adressleiste (Viewport 670↔798) ändert die Hero-Höhe
	   nicht mehr → kein „Zucken"/Verlängern beim Scrollen. Moderne Browser bekommen unten
	   per @supports die anpassungsfähige, aber ebenfalls stabile svh-Variante. */
	.hero { flex-direction: column; align-items: stretch; min-height: 600px; }
	/* Unterseiten-Banner mobil höher, damit das „Nordsee heute"-Panel rechts oben vollständig
	   ins Bild passt (Banner hat overflow:hidden → ein zu kurzes Banner würde es abschneiden)
	   und der Titel unten frei bleibt. */
	.page-hero { flex-direction: column; align-items: stretch; justify-content: flex-end; min-height: clamp(300px, 50vh, 380px); min-height: clamp(300px, 50svh, 380px); }

	/* „Nordsee heute"-Panel auf Mobil wieder zeigen (war in Sitzung 4 ausgeblendet — Kundenwunsch
	   jetzt umgekehrt). Zwei unterschiedliche Platzierungen:
	   - Startseite: fließt als zentrierter Block direkt UNTER den Hero-/Willkommenstext
	     (position:static statt der absoluten Desktop-Platzierung).
	   - Unterseiten: bleibt absolut IM Headerbild, aber rechts OBEN statt unten, deutlich sichtbar. */
	.hero .hero-status {
		position: static;
		width: min(100% - 2.6rem, 23rem);
		margin: 0.2rem auto clamp(1.6rem, 6vw, 2.4rem);
	}
	.page-hero .hero-status {
		top: clamp(0.9rem, 3.5vw, 1.4rem);
		bottom: auto;
		right: clamp(0.9rem, 3.5vw, 1.4rem);
		width: clamp(220px, 64vw, 280px);
	}

	/* Mobil: Milchglas-Panel (aus der Basis) über die volle Breite, da der Text
	   mittig über dem hellen Haus sitzt. */
	.hero__content { max-width: none; margin-left: 0; padding: 1.4rem 1.3rem 1.5rem; }
}

/* Fallback ohne backdrop-filter (ältere Browser): Panel etwas kräftiger tönen, damit der Text trägt. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.hero__content { background: rgba(15, 30, 40, 0.62); }
}

/* Moderne Browser: Hero auf Mobil an die „small viewport height" binden – passt sich der
   Gerätegröße an, bleibt aber beim Ein-/Ausblenden der iOS-Adressleiste stabil (svh ändert
   sich nicht mit der Leiste, anders als vh). Ältere Geräte ohne svh behalten die feste 600px. */
@supports (height: 1svh) {
	@media (max-width: 768px) {
		.hero { min-height: 88svh; }
	}
}

/* Transparente Variante über dem Hero (Startseite) – „Frosted Glass":
   durchscheinend, aber durch Weichzeichnen + gleichmäßigen Dunkelschleier gut lesbar. */
.site-header--transparent {
	position: fixed;
	inset: 0 0 auto 0;
	/* Gleichmäßiger, dezenter Dunkelschleier (läuft NICHT auf 0 aus) → Navi mittig bleibt lesbar. */
	background: linear-gradient(to bottom, rgba(15, 30, 40, 0.46) 0%, rgba(15, 30, 40, 0.30) 100%);
	-webkit-backdrop-filter: blur(12px) saturate(130%);
	backdrop-filter: blur(12px) saturate(130%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
/* Fallback ohne backdrop-filter (ältere Browser): etwas kräftiger tönen, damit der Text trotzdem trägt. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.site-header--transparent {
		background: linear-gradient(to bottom, rgba(15, 30, 40, 0.62) 0%, rgba(15, 30, 40, 0.44) 100%);
	}
}
.site-header--transparent .site-branding,
.site-header--transparent .primary-nav a,
.site-header--transparent .nav-toggle { color: var(--c-white); text-shadow: 0 1px 10px rgba(10, 20, 30, 0.5); }
.site-header--transparent .site-branding__sub { color: rgba(255, 255, 255, 0.88); }
.site-header--transparent .primary-nav a { font-weight: 800; } /* einheitlich kräftig (auch über Foto) */
.site-header--transparent .btn--primary {
	background-color: rgba(255, 255, 255, 0.96);
	border-color: transparent;
	color: var(--c-deep);
	box-shadow: 0 6px 20px rgba(10, 20, 30, 0.28);
}
.site-header--transparent .btn--primary:hover { background-color: #fff; color: var(--c-sea); }

/* Beim Scrollen wird der transparente Header fest (JS setzt .is-scrolled) */
.site-header.is-scrolled {
	background: var(--c-paper);
	border-bottom-color: var(--c-line);
	box-shadow: var(--shadow-sm);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.site-header.is-scrolled .site-branding,
.site-header.is-scrolled .primary-nav a,
.site-header.is-scrolled .nav-toggle { color: var(--c-deep); }
.site-header.is-scrolled .site-branding__sub { color: var(--c-sage); }
.site-header.is-scrolled .btn--primary { background-color: var(--c-deep); border-color: transparent; color: var(--c-paper); }

/* Branding / Logo */
.site-branding { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--c-deep); }
.site-branding__mark { color: var(--c-haze); flex: none; }
.site-branding__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-branding__name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; white-space: nowrap; }
.site-branding__sub { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-sage); white-space: nowrap; }

/* Schriftzug-Logo (Bild) – dunkel auf heller Leiste, weiß über dem Hero */
.site-branding--logo { gap: 0; }
.site-branding__logo { display: block; height: 52px; width: auto; }
.site-branding__logo--light { display: none; }
.site-header--transparent:not(.is-scrolled) .site-branding__logo--dark { display: none; }
/* Heller Schriftzug über dem Foto: Schlagschatten → deutlich erkennbar auf hellen Bildstellen. */
.site-header--transparent:not(.is-scrolled) .site-branding__logo--light {
	display: block;
	filter: drop-shadow(0 1px 6px rgba(8, 16, 24, 0.55));
}
@media (max-width: 540px) { .site-branding__logo { height: 42px; } }

/* Navigation */
/* Abstand mitwachsend: eng genug, dass die 7 Punkte auch auf schmaleren Desktops einreihig
   bleiben, luftig auf breiten Schirmen. */
.primary-nav__list { display: flex; gap: clamp(1.1rem, 0.4rem + 1vw, 2rem); }
.primary-nav a {
	color: var(--c-deep);
	font-size: var(--fs-sm);
	font-weight: 800;
	white-space: nowrap; /* nie zweireihig umbrechen (z. B. „Preise & Verfügbarkeit") */
	padding: 0.4em 0;
	position: relative;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background-color: currentColor;
	transition: width var(--dur) var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { width: 100%; }

/* Mobile Toggle */
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	width: 44px; height: 44px;
	padding: 0;
	color: var(--c-deep);
	position: relative;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 50%; transform: translateX(-50%);
	width: 24px; height: 2px;
	background-color: currentColor;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle__bars { top: 50%; margin-top: -1px; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background-color: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ----------------------------------------------------------------
   8. Hero
   ---------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: min(92vh, 760px); /* Fallback */
	min-height: min(92svh, 760px); /* stabil gegen die ein-/ausblendende Mobil-Adressleiste (kein „Zucken") */
	display: flex;
	align-items: flex-start;
	color: var(--c-white);
	overflow: hidden;
}
.hero--gradient {
	background: linear-gradient(160deg, var(--c-haze) 0%, var(--c-sea) 55%, var(--c-deep) 100%);
}
.hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero__overlay {
	position: absolute; inset: 0;
	z-index: 1;
	/* Links (hinter dem Text) abgedunkelt, damit der Text auch oben über hellem Himmel lesbar bleibt;
	   zusätzlich unten kräftig. Hausmitte/-spitze (Mitte/rechts) bleiben frei. */
	background:
		linear-gradient(to right,
			rgba(15, 30, 40, 0.55) 0%,
			rgba(15, 30, 40, 0.18) 32%,
			rgba(15, 30, 40, 0) 54%),
		linear-gradient(to bottom,
			rgba(15, 30, 40, 0.30) 0%,
			rgba(15, 30, 40, 0) 28%,
			rgba(15, 30, 40, 0) 44%,
			rgba(15, 30, 40, 0.55) 74%,
			rgba(12, 24, 33, 0.86) 100%);
}
/* Inner = volle Breite; Text sitzt oben links (über den Bäumen, Haus rechts/unten frei).
   padding-top räumt die fest stehende Kopfleiste frei. */
.hero__inner {
	position: relative; z-index: 2;
	max-width: none;
	margin-inline: 0;
	padding-top: calc(var(--header-h) + clamp(2.5rem, 8vh, 6rem));
	padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}
/* Hero-Inhalt in einem Milchglas-Panel (Frosted Glass wie der Header) → Titel, Untertitel
   und Buttons heben sich klar vom Foto ab. Gleiche Wirkung auf Desktop und Mobil.
   Schmal gehalten, damit rechts das Haus frei bleibt. */
.hero__content {
	max-width: 38rem;
	margin-left: clamp(2rem, 7vw, 7rem);
	padding: 1.5rem 1.6rem 1.6rem;
	border-radius: var(--radius-lg);
	background: rgba(15, 30, 40, 0.24);
	-webkit-backdrop-filter: blur(6px) saturate(115%);
	backdrop-filter: blur(6px) saturate(115%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 14px 40px rgba(8, 18, 28, 0.38);
}
.hero__eyebrow {
	font-size: var(--fs-xs); font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92); margin-bottom: var(--space-2);
	text-shadow: 0 1px 12px rgba(10, 20, 30, 0.55);
}
.hero__title { color: var(--c-white); font-size: clamp(2.3rem, 1.5rem + 3.1vw, 3.6rem); margin-bottom: var(--space-3); text-shadow: 0 2px 24px rgba(10, 20, 30, 0.5); text-wrap: balance; }
/* „blaue" im Hero-Titel in der Hausfarbe (Graublau) + fett. Erbt die text-shadow vom Titel
   (gut lesbar auf dem dunklen Panel). Fraunces ist nur als 600 geladen → 700 = synthet. Bold. */
.hero__title-accent { color: var(--c-haze); font-weight: 700; }
.hero__subtitle { font-size: var(--fs-md); line-height: 1.55; color: rgba(255, 255, 255, 0.95); max-width: 52ch; margin-bottom: var(--space-4); text-shadow: 0 1px 14px rgba(10, 20, 30, 0.5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
/* Primär-Button hell gefüllt → tritt auf dem dunklen Panel klar hervor (wie im Header). */
.hero .btn--primary { background-color: rgba(255, 255, 255, 0.96); border-color: transparent; color: var(--c-deep); box-shadow: 0 6px 20px rgba(10, 20, 30, 0.28); }
.hero .btn--primary:hover { background-color: #fff; color: var(--c-sea); }
/* Ghost-Button: kräftiger weißer Rand auf dem Panel. */
.hero .btn--on-image { border-color: rgba(255, 255, 255, 0.9); }
.hero__placeholder-hint { position: absolute; z-index: 2; top: calc(var(--header-h) + 1rem); right: 1rem; margin: 0; }

/* ----------------------------------------------------------------
   9. Sektionen
   ---------------------------------------------------------------- */

/* Intro */
.intro { background-color: var(--c-paper); }

/* Features / Ausstattung */
.features { background-color: var(--c-sand); }
.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
}
.feature-card {
	background-color: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: var(--space-4);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__mark { color: var(--c-haze); display: inline-flex; margin-bottom: var(--space-2); }
.feature-card__title { font-size: var(--fs-lg); margin-bottom: var(--space-1); }
.feature-card__text { color: var(--c-muted); margin: 0; font-size: var(--fs-base); }

/* Booking-Teaser */
.booking-teaser { background-color: var(--c-paper); }
.booking-teaser__panel {
	background: linear-gradient(150deg, var(--c-sea), var(--c-deep)); /* Fallback ohne Bild */
	color: var(--c-white);
	border-radius: var(--radius-lg);
	padding: clamp(1.8rem, 1rem + 3vw, 3.2rem);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
/* Mit Sonnenuntergangs-Foto: Bild + maritimer Dunkelschleier, damit Text/Formular lesbar bleiben. */
.booking-teaser__panel--image {
	background-image:
		linear-gradient(155deg, rgba(26,51,67,0.86) 0%, rgba(30,57,74,0.72) 45%, rgba(18,38,51,0.90) 100%),
		var(--teaser-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.booking-teaser__intro .section__eyebrow { color: var(--c-haze); }
.booking-teaser__intro .section__title { color: var(--c-white); margin-bottom: var(--space-2); }
.booking-teaser__hint { color: rgba(255,255,255,0.85); font-size: var(--fs-sm); margin-bottom: var(--space-4); }

.booking-form__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-2);
}
.booking-form__row--bottom {
	grid-template-columns: 1fr auto;
	align-items: center;
	margin-top: var(--space-3);
}
.booking-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.booking-form__field label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.booking-form input[type="date"],
.booking-form select {
	font: inherit;
	font-size: var(--fs-sm);
	padding: 0.7em 0.8em;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: var(--radius);
	background-color: rgba(255,255,255,0.95);
	color: var(--c-ink);
}
.booking-form input:focus-visible,
.booking-form select:focus-visible { outline: 2px solid var(--c-white); outline-offset: 2px; }
.booking-form__check { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: rgba(255,255,255,0.9); }
.booking-form__check input { width: 1.1rem; height: 1.1rem; accent-color: var(--c-coral); }
.booking-form__hint-inline { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.8); align-self: center; }
.booking-form__submit { background-color: var(--c-white); color: var(--c-deep); }
.booking-form__submit:hover { background-color: var(--c-beige); color: var(--c-deep); }

/* Galerie-Vorschau (Masonry via CSS columns) */
.gallery-preview { background-color: var(--c-paper); }
.gallery-preview__grid { columns: 3; column-gap: var(--space-2); margin-bottom: var(--space-5); }
.gallery-preview__item {
	break-inside: avoid;
	margin: 0 0 var(--space-2);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.gallery-preview__item img { width: 100%; transition: transform 0.6s var(--ease); }
.gallery-preview__item:hover img { transform: scale(1.04); }

/* Platzhalterflächen mit angedeuteter Bildwirkung */
.gallery-preview__item--placeholder {
	display: flex; align-items: flex-end;
	min-height: 220px; padding: var(--space-3);
	color: var(--c-white);
}
.gallery-preview__item--0 { background: linear-gradient(160deg, var(--c-haze), var(--c-sea)); min-height: 260px; }
.gallery-preview__item--1 { background: linear-gradient(160deg, var(--c-sage), #6f7d63); min-height: 200px; }
.gallery-preview__item--2 { background: linear-gradient(160deg, var(--c-beige), var(--c-wood)); min-height: 240px; }
.gallery-preview__caption { font-size: var(--fs-sm); font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }

/* ----------------------------------------------------------------
   Galerie /bilder (Masonry via CSS columns) + Lightbox
   ---------------------------------------------------------------- */
.bh-gallery { columns: 3; column-gap: var(--space-3); }
@media (max-width: 900px) { .bh-gallery { columns: 2; } }
@media (max-width: 540px) { .bh-gallery { columns: 1; } }

.bh-gallery__item {
	display: block;
	width: 100%;
	margin: 0 0 var(--space-3);
	padding: 0;
	border: 0;
	background: none;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	cursor: zoom-in;
	break-inside: avoid;
	position: relative;
	line-height: 0;
}
.bh-gallery__img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.bh-gallery__item:hover .bh-gallery__img,
.bh-gallery__item:focus-visible .bh-gallery__img { transform: scale(1.04); }
.bh-gallery__item:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 3px; }
.bh-gallery__item::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(15, 30, 40, 0.18), transparent 45%);
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}
.bh-gallery__item:hover::after { opacity: 1; }
.bh-gallery__empty { color: var(--c-muted); font-style: italic; }

/* Lightbox */
.bh-lightbox {
	position: fixed; inset: 0; z-index: 1000;
	display: flex; align-items: center; justify-content: center;
	padding: clamp(1rem, 3vw, 3rem);
	background: rgba(12, 24, 33, 0.93);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.bh-lightbox[hidden] { display: none; }
.bh-lightbox__figure {
	margin: 0;
	max-width: min(100%, 1400px);
	max-height: 100%;
	display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.bh-lightbox__img {
	max-width: 100%;
	max-height: 82vh;
	width: auto; height: auto;
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	background-color: var(--c-deep);
}
.bh-lightbox__caption {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: var(--fs-sm);
	text-align: center;
	max-width: 62ch;
}
.bh-lightbox__counter {
	position: absolute;
	top: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%);
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--fs-sm); letter-spacing: 0.06em;
}
.bh-lightbox__close,
.bh-lightbox__nav {
	position: absolute;
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border: 0; border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.9rem; line-height: 1;
	cursor: pointer;
	transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bh-lightbox__close:hover,
.bh-lightbox__nav:hover { background: rgba(255, 255, 255, 0.26); }
.bh-lightbox__close:focus-visible,
.bh-lightbox__nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.bh-lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); font-size: 2.1rem; }
.bh-lightbox__nav--prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.bh-lightbox__nav--next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.bh-lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.bh-lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }
body.bh-lightbox-open { overflow: hidden; }
@media (max-width: 540px) {
	.bh-lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
	.bh-lightbox__img { max-height: 74vh; }
}
@media (prefers-reduced-motion: reduce) {
	.bh-gallery__img,
	.bh-lightbox__close,
	.bh-lightbox__nav { transition: none; }
}

/* Lage */
.location { background-color: var(--c-sand); }
.split__figure--placeholder {
	display: flex; align-items: flex-end; padding: var(--space-3);
	min-height: 320px; aspect-ratio: 4 / 3;
	background: linear-gradient(160deg, var(--c-haze), var(--c-deep));
	color: var(--c-white);
}

/* Gästestimmen */
.testimonials { background-color: var(--c-paper); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.testimonial {
	background-color: var(--c-sand);
	border-radius: var(--radius);
	padding: var(--space-4);
}
.testimonial__quote { font-family: var(--font-display); font-size: var(--fs-md); line-height: 1.5; color: var(--c-deep); margin: 0 0 var(--space-2); }
.testimonial__name { font-size: var(--fs-sm); color: var(--c-sage); margin: 0; font-weight: 600; }
.hosts { } /* nutzt container--narrow + section--center */

/* Nordsee heute – Wetter & Gezeiten (maritim-dunkle Karten) */
.nordsee { background-color: var(--c-paper); }
.nordsee__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); align-items: stretch; }
.nordsee-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	color: var(--c-white);
	background: linear-gradient(158deg, var(--c-sea), var(--c-deep));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 1rem + 1.8vw, 2.4rem);
	box-shadow: var(--shadow-md);
}
.nordsee-card--tide.has-bg {
	background-image: linear-gradient(158deg, rgba(26, 51, 67, 0.84) 0%, rgba(30, 57, 74, 0.68) 45%, rgba(16, 34, 46, 0.92) 100%), var(--tide-bg);
	background-size: cover;
	background-position: center;
}
.nordsee-card > *:not(.nordsee-deco) { position: relative; z-index: 1; }

/* Deko-Motive (Boje / Wellen) */
.nordsee-deco { position: absolute; z-index: 0; color: #fff; pointer-events: none; }
.nordsee-deco--buoy { width: 150px; height: auto; right: -6px; bottom: -6px; opacity: 0.10; }
.nordsee-deco--waves { width: 116%; height: auto; left: -8%; bottom: 6px; opacity: 0.14; }

/* Kartenkopf */
.nordsee-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); margin-bottom: var(--space-3); }
.nordsee-card__title { font-family: var(--font-display); font-size: var(--fs-lg); color: #fff; margin: 0; }
.nordsee-card__stand { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.72); text-transform: capitalize; text-align: right; }
.nordsee-card__src { margin: auto 0 0; padding-top: var(--space-3); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6); }
.nordsee-card__empty { color: rgba(255, 255, 255, 0.8); margin: 0; }

/* Wetter – jetzt */
.wx-svg { width: 1em; height: 1em; display: block; }
.wx-now { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.wx-now__icon { font-size: 2.8rem; line-height: 0; color: #eaf1f5; flex: none; }
.wx-now__temp { font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1; color: #fff; }
.wx-now__cond { font-weight: 600; color: rgba(255, 255, 255, 0.9); }

.wx-details { list-style: none; margin: 0 0 var(--space-3); padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem var(--space-3); }
.wx-details li { display: flex; justify-content: space-between; gap: var(--space-1); font-size: var(--fs-sm); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0.4rem; }
.wx-details__k { color: rgba(255, 255, 255, 0.66); }
.wx-details__v { color: #fff; font-weight: 600; white-space: nowrap; }

.wx-sun { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0 0 var(--space-2); font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.85); }
.wx-sun strong { color: #fff; font-weight: 700; }
.wx-sun__sep { color: rgba(255, 255, 255, 0.4); }

.wx-subhead { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-haze); margin: var(--space-3) 0 var(--space-2); }
.nordsee-card--tide .wx-subhead--tide:first-of-type { margin-top: 0; }

.wx-hours, .wx-days { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-1); }
.wx-hours { grid-template-columns: repeat(4, 1fr); }
.wx-days { grid-template-columns: repeat(5, 1fr); }
.wx-hour, .wx-day { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; background: rgba(255, 255, 255, 0.06); border-radius: var(--radius); padding: 0.55rem 0.2rem; }
.wx-hour__time, .wx-day__name { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.02em; color: var(--c-haze); white-space: nowrap; }
.wx-hour__icon, .wx-day__icon { font-size: 1.5rem; line-height: 0; color: #eaf1f5; }
.wx-hour__temp, .wx-day__temp { font-size: var(--fs-sm); color: #fff; }
.wx-day__min { color: rgba(255, 255, 255, 0.6); }
.wx-hour__pop, .wx-day__pop { font-size: var(--fs-xs); color: #9fc6da; }

/* Gezeiten */
.tide-list { list-style: none; margin: 0; padding: 0; }
.tide-item { display: flex; align-items: center; gap: var(--space-2); padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.tide-item:last-child { border-bottom: 0; }
.tide-item__kind { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; color: #fff; }
.tide-arrow { width: 1.2em; height: 1.2em; flex: none; }
.tide-item--high .tide-arrow { color: #bcd8e6; }
.tide-item--low .tide-arrow { color: var(--c-beige); }
.tide-item__time { margin-left: auto; font-family: var(--font-display); font-size: var(--fs-md); color: #fff; white-space: nowrap; }
.tide-item__uhr { font-family: var(--font-body); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6); }
.tide-item__badge { margin-left: 0.6rem; font-size: var(--fs-xs); font-weight: 700; color: #fff; background-color: var(--c-coral); border-radius: var(--radius-pill); padding: 0.15rem 0.6rem; }
.tide-item.is-next { background-color: rgba(255, 255, 255, 0.1); border-bottom-color: transparent; border-radius: var(--radius); margin: 0 -0.7rem; padding-left: 0.7rem; padding-right: 0.7rem; }

@media (max-width: 720px) {
	.nordsee__grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
	.wx-details { grid-template-columns: 1fr; }
	.wx-days { grid-template-columns: repeat(3, 1fr); }
}

/* FAQ */
.faq { background-color: var(--c-sand); }
.faq__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-5); align-items: start; margin-bottom: var(--space-4); }
.faq__list { border-top: 1px solid var(--c-line); }
@media (max-width: 720px) { .faq__cols { grid-template-columns: 1fr; } }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__question {
	list-style: none;
	cursor: pointer;
	padding: var(--space-3) 2.5rem var(--space-3) 0;
	font-family: var(--font-display);
	font-size: var(--fs-lg);
	color: var(--c-deep);
	position: relative;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
	content: "+";
	position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
	font-family: var(--font-body); font-weight: 400; font-size: 1.6rem; color: var(--c-sage);
	transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__question::after { content: "–"; }
.faq__answer { padding-bottom: var(--space-3); color: var(--c-muted); }
.faq__answer p { margin: 0; }

/* Kontakt */
.contact { background-color: var(--c-paper); }
.contact__panel {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
	background-color: var(--c-sand);
	border-radius: var(--radius-lg);
	padding: clamp(2rem, 1rem + 4vw, 4rem);
}
.contact__details p { margin: 0 0 var(--space-2); }
.contact__link { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--c-deep); }
.contact__link:hover { color: var(--c-sea); }
.contact__actions { margin-top: var(--space-3); }

/* ----------------------------------------------------------------
   10. Footer & Sticky-CTA
   ---------------------------------------------------------------- */
.site-footer { background-color: var(--c-deep); color: rgba(255,255,255,0.82); padding-block: var(--space-6) var(--space-4); }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--c-white); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: var(--space-4);
	padding-bottom: var(--space-5);
	border-bottom: 1px solid rgba(255,255,255,0.14);
}
/* Footer-Spalten auf schmalen Viewports stapeln – 4 Spalten sprengen sonst die Breite
   (echte Overflow-Ursache auf dem Smartphone → horizontales Wegschieben). */
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .site-footer__grid { grid-template-columns: 1fr; } }
/* Lange Tokens (z. B. E-Mail) in schmalen Spalten umbrechen statt überlaufen lassen. */
.site-footer__contact, .site-footer__menu a, .site-footer__contact a { overflow-wrap: break-word; }
.site-footer__mark { color: var(--c-haze); margin-bottom: var(--space-2); }
.site-footer__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--c-white); margin: 0 0 var(--space-1); }
.site-footer__note { font-size: var(--fs-sm); max-width: 32ch; }
.site-footer__title { font-size: var(--fs-sm); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-haze); margin-bottom: var(--space-2); }
.site-footer__contact { font-style: normal; font-size: var(--fs-sm); line-height: 1.9; }
.site-footer__menu li { margin-bottom: 0.4rem; font-size: var(--fs-sm); }
.site-footer__bottom { padding-top: var(--space-3); font-size: var(--fs-xs); color: rgba(255,255,255,0.6); }
.site-footer__bottom p { margin: 0; }
/* Volles Logo (Illustration + Schriftzug) als helle Plakette auf dem dunklen Footer. */
.site-footer__logo {
	display: block;
	width: 100%;
	max-width: 230px;
	height: auto;
	background: #fdf8ef; /* exakt der Logo-Hintergrund → nahtlose Karte */
	border-radius: var(--radius-lg);
	padding: 0.7rem 0.9rem;
	margin-bottom: var(--space-3);
}
/* Willkommens-Band auf der Kontaktseite: volles Logo + persönliche Begrüßung.
   Ruhiges Sandband (hebt sich von der Creme-Seite ab) mit Strandkorb-rotem
   Akzentstreifen links – dasselbe maritime Motiv wie im Seiten-Banner. */
.contact-welcome {
	position: relative;
	display: grid;
	grid-template-columns: minmax(190px, 270px) 1fr;
	align-items: center;
	gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
	background: var(--c-sand);
	border-radius: var(--radius-lg);
	padding: clamp(1.6rem, 1.1rem + 2.5vw, 2.8rem) clamp(1.6rem, 1rem + 3vw, 3.2rem);
	padding-left: clamp(2rem, 1.2rem + 3.5vw, 3.8rem); /* Platz für den Akzentstreifen */
	margin-bottom: var(--space-5);
}
/* Strandkorb-roter Akzentstreifen links (wie .page-hero__panel), berührt die Ecken nicht. */
.contact-welcome::before {
	content: "";
	position: absolute;
	left: clamp(0.8rem, 0.5rem + 1vw, 1.4rem);
	top: clamp(1.1rem, 0.7rem + 1.5vw, 1.8rem);
	bottom: clamp(1.1rem, 0.7rem + 1.5vw, 1.8rem);
	width: 3px;
	border-radius: 3px;
	background: var(--c-coral);
}
/* Cremefarbene Plakette = exakt der Logo-Hintergrund (#fdf8ef) → nahtlose Karte (wie im Footer). */
.contact-welcome__logo {
	margin: 0;
	background: #fdf8ef;
	border-radius: var(--radius);
	padding: clamp(0.8rem, 0.5rem + 1vw, 1.3rem);
}
.contact-welcome__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.contact-welcome__title {
	font-size: var(--fs-lg);
	color: var(--c-deep);
	margin: 0.15rem 0 var(--space-2);
}
.contact-welcome__text {
	font-size: var(--fs-base);
	line-height: var(--lh-base);
	color: var(--c-ink);
	max-width: 52ch;
	margin: 0;
}

/* Mobil: Logo oben, Text darunter – mittig (volle Breite ist robust). */
@media (max-width: 680px) {
	.contact-welcome {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: var(--space-3);
		padding-left: clamp(1.6rem, 1rem + 3vw, 3.2rem);
	}
	/* Akzent als kurzer Streifen oben statt links – respektiert die runden Ecken. */
	.contact-welcome::before {
		left: clamp(1.4rem, 1rem + 3vw, 3rem);
		right: clamp(1.4rem, 1rem + 3vw, 3rem);
		top: clamp(0.9rem, 0.6rem + 1.5vw, 1.4rem);
		bottom: auto;
		width: auto;
		height: 3px;
	}
	.contact-welcome__logo { max-width: 240px; }
	.contact-welcome__text { max-width: none; }
}

/* Mobiler Sticky-CTA */
.sticky-cta {
	position: fixed;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 90;
	display: none;
	text-align: center;
	padding: 0.95em 1.4em;
	background-color: var(--c-deep);
	color: var(--c-paper);
	border-radius: var(--radius-pill);
	font-weight: 600;
	box-shadow: var(--shadow-md);
	transform: translateY(150%);
	transition: transform var(--dur) var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { color: var(--c-white); }

/* „Nach oben"-Button – rund, unten rechts; per JS nach dem Scrollen eingeblendet. */
.to-top {
	position: fixed;
	right: 1rem; bottom: 1rem;
	z-index: 95;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.85rem; height: 2.85rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background-color: var(--c-deep);
	color: var(--c-paper);
	box-shadow: var(--shadow-md);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background-color: var(--c-sea); transform: translateY(-2px); }
.to-top:focus-visible { outline: 2px solid var(--c-white); outline-offset: 2px; }
.to-top svg { width: 1.15rem; height: 1.15rem; display: block; }

/* ----------------------------------------------------------------
   11. Seiten / Inhalt
   ---------------------------------------------------------------- */
/* Kopf-Banner der Unterseiten (Bild + maritimer Verlauf, sonst Farbverlauf) */
.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(290px, 42vh, 420px); /* Fallback */
	min-height: clamp(290px, 42svh, 420px); /* stabil gegen die Mobil-Adressleiste */
	color: var(--c-white);
	overflow: hidden;
	background-color: var(--c-deep);
}
.page-hero--gradient {
	background: linear-gradient(160deg, var(--c-haze) 0%, var(--c-sea) 55%, var(--c-deep) 100%);
}
.page-hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
}
.page-hero__overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom,
		rgba(15, 30, 40, 0.18) 0%,
		rgba(15, 30, 40, 0) 38%,
		rgba(15, 30, 40, 0.45) 75%,
		rgba(12, 24, 33, 0.80) 100%);
}
.page-hero__inner {
	position: relative; z-index: 2;
	/* Voll-breit + horizontaler Innenabstand = Randabstand des „Nordsee heute"-Panels rechts
	   (clamp(1rem,3vw,2rem)) → die Titel-Karte links hat exakt denselben Abstand (gespiegelt). */
	max-width: none;
	padding-inline: clamp(1rem, 3vw, 2rem);
	padding-block: clamp(1.8rem, 1rem + 3vw, 3rem);
}
.page-hero__mark { color: rgba(255, 255, 255, 0.85); display: block; margin-bottom: var(--space-2); }
/* Milchglas-Titelpanel (maritim): die H1 sitzt elegant „im" Bild statt nackt darauf – gleicher
   Frosted-Stil wie das Hero-Panel der Startseite (Sea→Deep-Verlauf, Blur, feine helle Kante).
   width:fit-content → kompakte Karte unten links statt Vollbreite-Band. */
.page-hero__panel {
	position: relative;
	width: fit-content;
	max-width: min(100%, 42rem);
	/* linker Innenabstand größer → Platz für den Strandkorb-roten Akzentstreifen. */
	padding: clamp(0.9rem, 0.5rem + 1.4vw, 1.45rem) clamp(1.3rem, 0.8rem + 2vw, 2.2rem) clamp(0.9rem, 0.5rem + 1.4vw, 1.45rem) clamp(1.7rem, 1rem + 2.4vw, 2.7rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(30, 57, 74, 0.32), rgba(15, 30, 40, 0.42));
	-webkit-backdrop-filter: blur(9px) saturate(125%);
	backdrop-filter: blur(9px) saturate(125%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 12px 34px rgba(8, 18, 28, 0.34);
}
/* Strandkorb-roter Akzentstreifen (maritimes Detail), links vertikal, ohne die Ecken zu berühren. */
.page-hero__panel::before {
	content: "";
	position: absolute;
	left: clamp(0.7rem, 0.4rem + 0.9vw, 1.15rem);
	top: clamp(0.9rem, 0.5rem + 1.4vw, 1.45rem);
	bottom: clamp(0.9rem, 0.5rem + 1.4vw, 1.45rem);
	width: 3px;
	border-radius: 3px;
	background: var(--c-coral);
}
/* Fallback ohne backdrop-filter: kräftiger tönen, damit der Titel trotzdem klar trägt. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.page-hero__panel { background: linear-gradient(135deg, rgba(30, 57, 74, 0.66), rgba(15, 30, 40, 0.74)); }
}
/* Pro Seite via ACF-Feld „Titel-Ausrichtung“ umschaltbar: zentrierte Titel-Karte (Standard = links). */
.page-hero--title-center .page-hero__panel { margin-inline: auto; }
.page-hero__title {
	color: var(--c-white);
	font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem);
	margin: 0;
	text-shadow: 0 1px 10px rgba(8, 16, 24, 0.38);
}

.rich-text { font-size: var(--fs-base); }
.rich-text h2 { font-size: var(--fs-lg); margin-top: var(--space-5); }
.rich-text h3 { font-size: var(--fs-md); margin-top: var(--space-4); }
.rich-text ul { list-style: disc; padding-left: 1.4em; margin-bottom: var(--space-3); }
.rich-text ol { list-style: decimal; padding-left: 1.4em; margin-bottom: var(--space-3); }
.rich-text a { text-decoration: underline; text-underline-offset: 0.18em; }
.rich-text img { border-radius: var(--radius); margin-block: var(--space-3); }

/* Redaktionelle Bilder im Fließtext: ruhige Bildkarte (weiche Ecken + Schatten)
   mit dezenter Bildunterschrift – wie im Lage-Split, nur im Lesefluss. */
.rich-text figure { margin: var(--space-4) 0; }
.rich-text figure img {
	display: block;
	width: 100%;
	height: auto;
	margin-block: 0; /* Abstand trägt die <figure> */
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}
.rich-text figcaption {
	margin-top: var(--space-1);
	font-size: var(--fs-sm);
	font-style: italic;
	color: var(--c-muted);
}
/* Zwei-Bild-Reihe (z. B. Küche + Schlafzimmer); beide Hochformate richten sich
   bei gleichem Seitenverhältnis automatisch aus. Mobil gestapelt. */
.rich-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
	margin: var(--space-4) 0;
}
.rich-grid figure { margin: 0; }
@media (max-width: 600px) {
	.rich-grid { grid-template-columns: 1fr; gap: var(--space-2); }
}
/* Bild neben Text (z. B. das Hochformat der Treppe neben einem Absatz). Mobil gestapelt. */
.rich-split {
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	gap: var(--space-4);
	align-items: center;
	margin: var(--space-4) 0;
}
.rich-split figure { margin: 0; }
.rich-split__body > :first-child { margin-top: 0; }
.rich-split__body > :last-child { margin-bottom: 0; }
@media (max-width: 600px) {
	.rich-split { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* ----------------------------------------------------------------
   Maritime Motive – feine, einfarbige Linien-Illustrationen.
   Abschnitts-Trenner · Footer-Akzent · Sektions-Watermarks · Listen-Marker.
   Bewusst sparsam & elegant (KONZEPT: „maritime Liebe zum Detail").
   ---------------------------------------------------------------- */

/* Abschnitts-Trenner: feine Linie – Motiv – feine Linie. */
.bh-divider {
	display: flex;
	align-items: center;
	gap: clamp(0.9rem, 2.5vw, 1.6rem);
	max-width: 460px;
	margin-inline: auto;
	padding: clamp(1rem, 3vw, 2rem) 1.2rem;
	color: var(--c-sea);
}
.bh-divider__line { flex: 1; height: 1px; background: var(--c-line); }
.bh-divider__mark { flex: 0 0 auto; opacity: 0.9; }

/* Footer-Akzent: hell auf dunklem Footer. */
.site-footer__top { padding-bottom: var(--space-3); }
.bh-divider--footer { max-width: 520px; color: var(--c-haze); padding-top: 0; }
.bh-divider--footer .bh-divider__line { background: rgba(255, 255, 255, 0.16); }
.bh-divider--footer .bh-divider__mark { opacity: 0.85; }

/* Watermarks: großes, sehr blasses Motiv in einer Sektions-Ecke (Textur). */
.features, .location, .contact { position: relative; overflow: hidden; }
.features > .container, .location > .container, .contact > .container { position: relative; z-index: 1; }
.bh-watermark {
	position: absolute;
	color: var(--c-deep);
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}
.bh-watermark--br { right: -42px; bottom: -48px; }
.bh-watermark--tr { right: -46px; top: -40px; }
.bh-watermark--bl { left: -44px; bottom: -48px; }
.location .bh-watermark { color: var(--c-sea); }

/* Abschnitts-Ornament: kleines Motiv LINKS VOR jeder Überschrift. Welches Motiv,
   bestimmt die Klasse `.bh-m-<motiv>` (rotierend pro Überschrift, gesetzt von
   bh_rotate_heading_motifs(); die Klassen-Regeln liefert enqueue.php inline).
   Hier nur Position + Anker als Fallback, falls keine Klasse gesetzt wurde. */
.rich-text h2 {
	position: relative;
	margin-top: var(--space-4);
	padding-left: 2.05em;
	background-repeat: no-repeat;
	background-position: left 0.16em;
	background-size: 1.5em 1.5em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2334536a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='11' r='4.5'/%3E%3Cline x1='32' y1='15.5' x2='32' y2='53'/%3E%3Cline x1='23' y1='23' x2='41' y2='23'/%3E%3Cpath d='M13 37 C13 49 21 54 32 54 C43 54 51 49 51 37'/%3E%3Cpath d='M13 37 l-3.5 5 M13 37 l6 1.5'/%3E%3Cpath d='M51 37 l3.5 5 M51 37 l-6 1.5'/%3E%3C/svg%3E");
}

/* Listen-Marker: kleine Muschel statt Aufzählungspunkt. */
.rich-text ul {
	list-style: none;
	padding-left: 1.7em;
}
.rich-text ul li {
	position: relative;
}
.rich-text ul li::before {
	content: "";
	position: absolute;
	left: -1.7em;
	top: 0.32em;
	width: 1.05em;
	height: 1.05em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.8;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2334536a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 51 L13 31 Q32 13 51 31 Z'/%3E%3Cpath d='M32 50 L15 32'/%3E%3Cpath d='M32 50 L23.5 28'/%3E%3Cpath d='M32 50 L32 25'/%3E%3Cpath d='M32 50 L40.5 28'/%3E%3Cpath d='M32 50 L49 32'/%3E%3C/svg%3E");
}
.rich-text blockquote {
	margin: var(--space-4) 0;
	padding-left: var(--space-3);
	border-left: 3px solid var(--c-sage);
	font-family: var(--font-display);
	font-size: var(--fs-md);
	color: var(--c-deep);
}

.post-list__item { padding-block: var(--space-4); border-bottom: 1px solid var(--c-line); }
.post-list__title { font-size: var(--fs-lg); margin-bottom: var(--space-2); }

.error-404__mark { color: var(--c-haze); margin: 0 auto var(--space-3); }
.error-404__actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   12. Zugänglichkeit & Reduced Motion
   ---------------------------------------------------------------- */
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--c-deep); color: #fff; padding: 0.8em 1.2em; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 980px) {
	.features__grid,
	.testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-preview__grid { columns: 2; }
	.booking-form__row { grid-template-columns: repeat(2, 1fr); }
	.contact__panel { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	:root { --header-h: 70px; }

	/* Navigation als Off-Canvas-Panel (früh genug, damit die Leiste nie gedrängt wirkt) */
	.nav-toggle { display: inline-flex; z-index: 110; }
	.site-header__cta { display: none; } /* CTA mobil über Sticky-Button */

	/* Mobil zurück auf Flex: Marke links, Hamburger rechts (das Desktop-Grid würde den
	   Toggle sonst in die mittlere Spalte setzen). */
	.site-header__inner { display: flex; }
	.site-header__brand { margin-left: 0; margin-right: auto; }

	.primary-nav {
		position: fixed;
		/* Höhe NICHT über inset:bottom:0 aufspannen: Der Header hat backdrop-filter und ist
		   damit auf iOS-Safari Containing-Block für position:fixed-Kinder. bottom:0 löste sich
		   dort gegen die ~70px-Header-Box auf → Panel kollabierte auf Header-Höhe, die Links
		   liefen unten aufs Foto (weiß/unlesbar; per iPhone-Screenshot bestätigt). top/right
		   fallen mit den Viewport-Rändern zusammen (Header-Box = volle Breite, oben fix), die
		   Höhe holen wir viewport-relativ über 100dvh (Fallback 100vh). */
		top: 0;
		right: 0;
		bottom: auto;
		left: auto;
		height: 100vh;
		height: 100dvh;
		width: min(82vw, 340px);
		background-color: var(--c-paper);
		padding: calc(var(--header-h) + 1.5rem) var(--space-4) var(--space-4);
		box-shadow: var(--shadow-md);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		/* Geschlossen: am rechten Rand INNERHALB des Viewports geparkt und ausgeblendet.
		   Kein Off-Screen-Parken (früher translateX(100%)) → kein horizontaler Overflow,
		   daher kein Wegschieben auf Mobil und kein overflow-x-Hack am Wurzelelement nötig. */
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
		z-index: 105;
	}
	.primary-nav.is-open { opacity: 1; visibility: visible; transition: opacity var(--dur) var(--ease), visibility 0s; }
	.primary-nav__list { flex-direction: column; gap: 0; }
	.primary-nav a { display: block; padding: 0.9em 0; border-bottom: 1px solid var(--c-line); color: var(--c-deep); }
	body.nav-open { overflow: hidden; }

	/* Über dem Foto ist die Navi-Schrift weiß (für die Desktop-Navi gedacht). Im mobilen
	   Off-Canvas-Panel (cremefarben) müssen Menüpunkte UND Icon dunkel sein – sonst sind die
	   Links ganz oben (transparenter Header) unsichtbar.
	   WICHTIG (iOS): Eine Regel mit IDENTISCHER Spezifität wie die weiße Foto-Regel
	   (.site-header--transparent .primary-nav a) setzt sich auf iOS-Safari trotz späterer
	   Quellreihenfolge NICHT durch (nur am echten Gerät sichtbar; in Chromium gewinnt sie).
	   Lösung wie beim Toggle, der bereits korrekt dunkel rendert: Anker auf body.nav-open
	   (greift nur im geöffneten Panel) + !important + -webkit-text-fill-color (WebKit-Absicherung). */
	body.nav-open .primary-nav a,
	.site-header--transparent .primary-nav a {
		color: var(--c-deep) !important;
		-webkit-text-fill-color: var(--c-deep) !important;
		text-shadow: none !important;
	}
	body.nav-open .nav-toggle { color: var(--c-deep) !important; -webkit-text-fill-color: var(--c-deep) !important; }

	.split { grid-template-columns: 1fr; }
	.split__media { order: -1; }

	.sticky-cta { display: block; }
	/* Über der Sticky-CTA-Leiste platzieren, damit sich beide nicht überlappen. */
	.to-top { bottom: 4.6rem; }
}

@media (max-width: 540px) {
	.features__grid,
	.testimonials__grid { grid-template-columns: 1fr; }
	.gallery-preview__grid { columns: 1; }
	.booking-form__row { grid-template-columns: 1fr 1fr; }
	.booking-form__row--bottom { grid-template-columns: 1fr; gap: var(--space-3); }
	.booking-form__submit { width: 100%; }
}

/* ----------------------------------------------------------------
   Buchungsanfrage (/buchen) – eigenes, schlankes Formular
   ---------------------------------------------------------------- */
.booking-inquiry { margin-top: var(--space-4); }

.booking-msg {
	padding: var(--space-3);
	border-radius: var(--radius);
	margin-bottom: var(--space-4);
	font-weight: 600;
}
.booking-msg--ok  { background: rgba(142, 156, 130, 0.18); border: 1px solid var(--c-sage); color: #46563c; }
.booking-msg--err { background: rgba(194, 90, 67, 0.12); border: 1px solid var(--c-coral); color: #8a3322; }

.booking-inquiry__form { background: var(--c-paper); }
.booking-inquiry__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	margin-bottom: var(--space-3);
}
.booking-inquiry__grid--contact { grid-template-columns: repeat(3, 1fr); }

.booking-inquiry .field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-3); }
.booking-inquiry .field:last-child { margin-bottom: 0; }
.booking-inquiry label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-deep); }

.booking-inquiry input[type="text"],
.booking-inquiry input[type="email"],
.booking-inquiry input[type="tel"],
.booking-inquiry input[type="date"],
.booking-inquiry select,
.booking-inquiry textarea,
.booking-inquiry input.flatpickr-input {
	font: inherit;
	font-size: var(--fs-base);
	padding: 0.7em 0.85em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	color: var(--c-ink);
	width: 100%;
}
.booking-inquiry input:focus-visible,
.booking-inquiry select:focus-visible,
.booking-inquiry textarea:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; border-color: var(--c-sea); }

/* Honeypot – für Menschen unsichtbar */
/* Spam-Honeypot unsichtbar, aber OHNE Off-Screen-Position (left:-9999px erzeugte Overflow). */
.bh-hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Preis-Schätzung */
.booking-price {
	background: var(--c-sand);
	border-radius: var(--radius);
	padding: var(--space-3);
	margin-bottom: var(--space-3);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.booking-price__line { font-family: var(--font-display); font-size: var(--fs-md); color: var(--c-deep); }
.booking-price__line--muted { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--c-muted); }

/* Datenschutz-Checkbox */
.field-check { display: flex; gap: 0.6rem; align-items: flex-start; margin: var(--space-2) 0 var(--space-3); font-size: var(--fs-sm); }
.field-check input { margin-top: 0.2em; width: 1.1rem; height: 1.1rem; accent-color: var(--c-deep); flex: none; }

.booking-inquiry__submit { margin-top: var(--space-2); }
.booking-inquiry__note { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-2); }

/* Belegte Zeiträume */
.booking-blocked { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--c-line); }
.booking-blocked__title { font-size: var(--fs-md); margin-bottom: var(--space-2); }
.booking-blocked__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.booking-blocked__list li {
	font-size: var(--fs-sm); color: var(--c-muted);
	background: var(--c-sand); border-radius: var(--radius-pill); padding: 0.3em 0.9em;
}

/* flatpickr an unsere Farbwelt anpassen */
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected:hover { background: var(--c-deep); border-color: var(--c-deep); }
.flatpickr-day.today { border-color: var(--c-sage); }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { text-decoration: line-through; color: rgba(32,50,61,0.3); }
.flatpickr-months .flatpickr-month, .flatpickr-current-month { color: var(--c-deep); }

@media (max-width: 760px) {
	.booking-inquiry__grid, .booking-inquiry__grid--contact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.booking-inquiry__grid, .booking-inquiry__grid--contact { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   Kontaktseite (/kontakt) – Gastgeberkarte + Formular
   ---------------------------------------------------------------- */
.contact-page {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(1.5rem, 1rem + 3vw, 3rem);
	align-items: start;
	margin-top: var(--space-4);
}
@media (max-width: 820px) { .contact-page { grid-template-columns: 1fr; } }

.contact-aside__card {
	background: var(--c-sand);
	border-radius: var(--radius-lg);
	padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
}
.contact-aside__mark { color: var(--c-haze); display: block; margin-bottom: var(--space-2); }
.contact-aside__title { font-size: var(--fs-lg); margin: 0 0 var(--space-2); }
.contact-aside__intro { color: var(--c-ink); margin: 0 0 var(--space-4); }
.contact-aside__list { list-style: none; margin: 0 0 var(--space-4); padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.contact-aside__label { display: block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-sage); margin-bottom: 0.2rem; }
.contact-aside__value { font-family: var(--font-display); font-size: var(--fs-md); color: var(--c-deep); }
a.contact-aside__value:hover { color: var(--c-sea); }
.contact-aside__value--text { font-family: var(--font-body); font-size: var(--fs-base); color: var(--c-ink); line-height: 1.5; }
.contact-aside__hint { font-size: var(--fs-sm); color: var(--c-muted); margin: 0; }

.contact-form__title { font-size: var(--fs-lg); margin: 0 0 var(--space-3); }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 540px) { .contact-form__grid { grid-template-columns: 1fr; } }
.contact-form .field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-3); }
.contact-form label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-deep); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	font: inherit;
	font-size: var(--fs-base);
	padding: 0.7em 0.85em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	color: var(--c-ink);
	width: 100%;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; border-color: var(--c-sea); }
.contact-form__submit { margin-top: var(--space-2); }
.contact-form__note { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-2); }

/* Anfahrt-Abschnitt auf der Kontaktseite: Beschreibung + Karte */
.contact-anfahrt { margin-top: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.contact-anfahrt__title { font-size: var(--fs-lg); margin: 0 0 var(--space-4); }
.contact-anfahrt__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
@media (max-width: 820px) { .contact-anfahrt__grid { grid-template-columns: 1fr; } }
.anfahrt-list { margin: 0 0 var(--space-4); }
.anfahrt-list dt { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-sage); margin-bottom: 0.2rem; }
.anfahrt-list dd { margin: 0 0 var(--space-3); color: var(--c-ink); line-height: 1.55; }

/* Klick-zum-Laden-Karte (DSGVO): Google Maps lädt erst nach bewusstem Klick. */
.bh-map {
	position: relative;
	aspect-ratio: 4 / 3;
	min-height: 300px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: linear-gradient(150deg, var(--c-haze), var(--c-sea));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	padding: var(--space-4);
	text-align: center;
}
.bh-map__hint { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.9); margin: 0; max-width: 30ch; }
.bh-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.bh-map.is-loaded { padding: 0; background: none; }

/* Mobil dezenter: "Nordsee heute" auf Unterseiten-Bannern kompakt – Tagesverlauf + Datum
   ausgeblendet, schmaler, kleinere Werte. Nimmt deutlich weniger Platz im Banner ein.
   (Eigener @media-Block: überschreibt die vorherige .page-hero .hero-status-Regel.) */
@media (max-width: 768px) {
	/* Volle Breite oberhalb des Bildes: Panel als opake Leiste am oberen Banner-Rand,
	   Titel sitzt unten (space-between). Kein Floaten/Ueberragen mehr. */
	.page-hero { justify-content: space-between; }
	.page-hero .hero-status {
		order: -1;
		position: static;
		top: auto; right: auto; bottom: auto;
		width: 100%;
		margin: 0;
		padding: 0.6rem clamp(1rem, 4vw, 1.4rem);
		border-radius: 0;
		border-left: 0; border-right: 0; border-top: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		background: linear-gradient(120deg, var(--c-sea), var(--c-deep));
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 0.25rem 1rem;
	}
	.page-hero .hero-status.has-bg { background: linear-gradient(120deg, var(--c-sea), var(--c-deep)); }
	.page-hero .hero-status .hero-status__head { flex-basis: 100%; margin: 0; }
	.page-hero .hero-status .hero-status__date,
	.page-hero .hero-status .hero-status__hours { display: none; }
	.page-hero .hero-status .hero-status__weather { margin: 0; gap: 0.45rem; }
	.page-hero .hero-status .hero-status__temp { font-size: 1.4rem; }
	.page-hero .hero-status .hero-status__wx-icon { font-size: 1.6rem; }
	.page-hero .hero-status .hero-status__tides { display: grid; gap: 0.15rem; }
}

/* ----------------------------------------------------------------
   Gästebuch (/gaestebuch) – Gästestimmen (Karten) + Eintragsformular
   ---------------------------------------------------------------- */
.bh-gb { margin-top: var(--space-4); }

/* Kopf: Haus-Marke, Titel, Lead, Bewertungs-Zusammenfassung – ruhig zentriert. */
.bh-gb__intro { text-align: center; max-width: 60ch; margin: 0 auto var(--space-5); }
.bh-gb__mark { color: var(--c-haze); display: inline-block; margin-bottom: var(--space-2); }
.bh-gb__title { font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem); margin: 0 0 var(--space-2); }
.bh-gb__lead { color: var(--c-ink); font-size: var(--fs-md); line-height: 1.6; margin: 0 auto; }
.bh-gb__summary {
	display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 0.6rem; margin: var(--space-3) 0 0;
	background: var(--c-sand); border-radius: var(--radius-pill);
	padding: 0.5rem 1.1rem;
}
.bh-gb__summary-text { font-family: var(--font-display); color: var(--c-deep); font-size: var(--fs-base); }

/* Sterne (Anzeige) – warmes Strandkorb-Rot als Qualitätssignal. */
.bh-gb-stars { display: inline-flex; gap: 0.08em; line-height: 1; white-space: nowrap; }
.bh-gb-star { color: var(--c-line); font-size: 1.05em; }
.bh-gb-star.is-on { color: var(--c-coral); }

/* Karten-Raster: fließend, ruhige Creme-/Sand-Karten mit weicher Kante. */
.bh-gb__list {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem);
	align-items: start;
}
.bh-gb-card { display: flex; }
.bh-gb-card__inner {
	position: relative;
	margin: 0;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: clamp(1.3rem, 1rem + 1.5vw, 1.9rem);
	box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column; gap: var(--space-2);
	width: 100%;
	transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bh-gb-card__inner:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* Zartes Anführungszeichen als maritimes Detail (dezent, hinter dem Text). */
.bh-gb-card__inner::before {
	content: "\201C";
	position: absolute; top: 0.1em; right: 0.35em;
	font-family: var(--font-display);
	font-size: 3.4rem; line-height: 1;
	color: var(--c-haze); opacity: 0.28;
	pointer-events: none;
}
.bh-gb-card .bh-gb-stars { font-size: 1.1rem; }
.bh-gb-card__quote { margin: 0; color: var(--c-ink); line-height: 1.62; }
.bh-gb-card__quote p { margin: 0 0 0.7em; }
.bh-gb-card__quote p:last-child { margin-bottom: 0; }
/* Optionale Medien zum Eintrag (Beitragsbild + vom Gast hochgeladene Fotos/Videos). */
.bh-gb-card__media { margin: var(--space-1) 0 0; display: grid; gap: 0.6rem; }
.bh-gb-card__media--grid { grid-template-columns: 1fr 1fr; }
.bh-gb-card__media img,
.bh-gb-card__img,
.bh-gb-card__video {
	display: block; width: 100%; height: auto;
	border-radius: var(--radius);
	border: 1px solid var(--c-line);
	box-shadow: var(--shadow-sm);
	background: var(--c-sand);
}
.bh-gb-card__video { aspect-ratio: 16 / 9; object-fit: cover; background: #0c1821; }

/* Datei-Auswahl im Formular */
.bh-gb-form__media input[type="file"] {
	font: inherit; font-size: var(--fs-sm);
	padding: 0.6em 0.7em;
	border: 1px dashed var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	color: var(--c-ink);
	width: 100%;
}
.bh-gb-form__media input[type="file"]:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; border-color: var(--c-sea); }
.bh-gb-card__meta { margin-top: auto; padding-top: var(--space-2); border-top: 1px solid var(--c-line); }
.bh-gb-card__name { display: block; font-family: var(--font-display); font-size: var(--fs-md); color: var(--c-deep); }
.bh-gb-card__sub { display: block; font-size: var(--fs-sm); color: var(--c-muted); margin-top: 0.15rem; }

.bh-gb__empty { text-align: center; color: var(--c-muted); font-size: var(--fs-md); margin: var(--space-5) auto; max-width: 46ch; }
.bh-gb__divider { margin: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) auto; }

/* Slider: 9 Einträge je Seite, elegantes Gleiten zu den weiteren.
   Ohne JS (kein .is-ready) stapeln sich die Seiten normal (Fallback, SEO-freundlich). */
.bh-gb-slider { position: relative; }
.bh-gb-page + .bh-gb-page { margin-top: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.bh-gb-slider.is-ready .bh-gb-slider__viewport { overflow: hidden; transition: height 0.45s var(--ease); }
.bh-gb-slider.is-ready .bh-gb-slider__track { display: flex; align-items: flex-start; transition: transform 0.5s var(--ease); }
.bh-gb-slider.is-ready .bh-gb-page { flex: 0 0 100%; width: 100%; margin-top: 0; }

/* Navigation (nur mit JS und mehreren Seiten sichtbar) */
.bh-gb-slider__nav { display: none; align-items: center; justify-content: center; gap: var(--space-3); margin-top: var(--space-4); }
.bh-gb-slider.is-ready.has-pages .bh-gb-slider__nav { display: flex; }
.bh-gb-slider__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.9rem; height: 2.9rem;
	border: 1px solid var(--c-line); border-radius: var(--radius-pill);
	background: var(--c-white); color: var(--c-deep);
	cursor: pointer; flex: none;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.bh-gb-slider__arrow:hover { background: var(--c-deep); color: var(--c-paper); border-color: var(--c-deep); }
.bh-gb-slider__arrow:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; }
.bh-gb-slider__arrow[disabled] { opacity: 0.35; cursor: default; }
.bh-gb-slider__arrow[disabled]:hover { background: var(--c-white); color: var(--c-deep); border-color: var(--c-line); }
.bh-gb-slider__dots { display: flex; align-items: center; gap: 0.5rem; }
.bh-gb-slider__dot {
	width: 9px; height: 9px; padding: 0;
	border: 1px solid var(--c-haze); border-radius: 50%;
	background: transparent; cursor: pointer;
	transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bh-gb-slider__dot:hover { background: var(--c-haze); }
.bh-gb-slider__dot.is-active { background: var(--c-sea); border-color: var(--c-sea); transform: scale(1.15); }
.bh-gb-slider__dot:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	.bh-gb-slider.is-ready .bh-gb-slider__viewport,
	.bh-gb-slider.is-ready .bh-gb-slider__track { transition: none; }
}

/* Eintragsformular */
.bh-gb-form { max-width: 44rem; margin: 0 auto; text-align: center; }
.bh-gb-form__title { font-size: var(--fs-lg); margin: 0 0 var(--space-2); }
.bh-gb-form__intro { color: var(--c-ink); margin: 0 auto var(--space-4); max-width: 52ch; }
.bh-gb-form__form { text-align: left; }
.bh-gb-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 540px) { .bh-gb-form__grid { grid-template-columns: 1fr; } }
.bh-gb-form .field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-3); }
.bh-gb-form label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-deep); }
.bh-gb-form input[type="text"],
.bh-gb-form input[type="email"],
.bh-gb-form textarea {
	font: inherit;
	font-size: var(--fs-base);
	padding: 0.7em 0.85em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-white);
	color: var(--c-ink);
	width: 100%;
}
.bh-gb-form input:focus-visible,
.bh-gb-form textarea:focus-visible { outline: 2px solid var(--c-sea); outline-offset: 2px; border-color: var(--c-sea); }
.bh-gb-form__submit { margin-top: var(--space-2); }
.bh-gb-form__note { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--space-2); }

/* Sterne-Eingabe: echte Radio-Buttons, als Sterne gestaltet (row-reverse-Trick,
   damit Hover/Auswahl nach links „auffüllt"). Barrierearm: Radios bleiben
   fokussierbar, jedes Label trägt eine Text-Alternative. */
.bh-gb-rating-field { border: 0; padding: 0; margin: 0 0 var(--space-3); }
.bh-gb-rating-field legend { font-size: var(--fs-sm); font-weight: 600; color: var(--c-deep); padding: 0; margin-bottom: 0.3rem; }
.bh-gb-rating-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.1rem; }
.bh-gb-rating-input input { position: absolute; width: 1px; height: 1px; opacity: 0; margin: -1px; }
.bh-gb-rating-input label {
	font-size: 1.9rem; line-height: 1;
	color: var(--c-line); cursor: pointer;
	padding: 0.05em 0.06em;
	transition: color 0.12s var(--ease);
}
.bh-gb-rating-input label:hover,
.bh-gb-rating-input label:hover ~ label,
.bh-gb-rating-input input:checked + label,
.bh-gb-rating-input input:checked + label ~ label { color: var(--c-coral); }
.bh-gb-rating-input input:focus-visible + label { outline: 2px solid var(--c-sea); outline-offset: 2px; border-radius: 4px; }

/* Overrides gegen die .rich-text-Basisstile (die Seite ist in .rich-text gewrappt):
   – Karten-Blockquote ohne Sage-Rahmen/Display-Schrift (soll ruhiger Fließtext sein),
   – Karten-Liste ohne Einzug und ohne Muschel-Listenmarker (::before),
   – eigene Überschriften ohne das rotierende H2-Motiv (Kopf trägt schon Marke + Sterne). */
.rich-text .bh-gb__list { padding-left: 0; margin: 0; }
.rich-text .bh-gb__list .bh-gb-card::before { display: none; content: none; }
.rich-text .bh-gb-card__quote {
	margin: 0; padding-left: 0; border-left: 0;
	font-family: var(--font-body); font-size: var(--fs-base); color: var(--c-ink);
}
.rich-text h2.bh-gb__title,
.rich-text h2.bh-gb-form__title {
	margin-top: 0; padding-left: 0;
	background-image: none !important;
}

/* ----------------------------------------------------------------
   Fremd-Plugin-Korrektur: Complianz Cookie-Banner
   ----------------------------------------------------------------
   Das Cookie-Banner (Plugin, nicht Theme) wird über eine generierte Datei
   (uploads/complianz/css/banner-1-*.css) mit fester Pixelbreite (~555px) gerendert und
   ragt auf schmalen Smartphones über den Viewport hinaus → horizontales Wegschieben der
   ganzen Seite (und Scroll-Ruckeln auf iOS).
   Wichtig: `max-width:100vw` (VIEWPORT-bezogen) statt `100%` (das löst sich relativ zum
   ohnehin überbreiten Containing-Block auf und begrenzt nichts). ID+Klasse-Spezifität
   schlägt die generierte Plugin-Regel unabhängig von der Lade-Reihenfolge. */
@media (max-width: 600px) {
	#cmplz-cookiebanner-1-optin.cmplz-cookiebanner,
	#cmplz-cookiebanner-1-optout.cmplz-cookiebanner {
		max-width: 100vw !important;
		box-sizing: border-box !important;
	}
}
