:root {
  --glow-a: rgba(89, 117, 107, 0.20);
  --glow-b: rgba(214, 229, 227, 0.55);
  --veil: rgba(255, 255, 255, 0.62);
  --ink: #18211f;
  --muted: #5f6a65;
  --paper: #faf8f3;
  --surface: #ffffff;
  --sage: #59756b;
  --sage-dark: #2f5148;
  --clay: #b86f45;
  --sky: #d6e5e3;
  --line: rgba(24, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.18);
  --header-bg: rgba(250, 248, 243, 0.88);
  --pricing-bg: #e8eee7;
  --soft-bg: #f8f7f2;
  font-family:
  Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
  sans-serif;
}

* {
  box-sizing: border-box;
}

/* Das hidden-Attribut muss auch bei Elementen mit eigenem display greifen. */
[hidden] {
  display: none !important;
}

/* Lange Woerter duerfen umbrechen, sonst sprengen sie auf schmalen
   Displays die Spalte und die ganze Seite wird seitlich scrollbar. */
body {
  hyphens: auto;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  hyphens: auto;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  /* Weiche Farbfelder statt einer flachen weissen Flaeche. */
  background-image:
  radial-gradient(1000px 620px at 8% -8%, var(--glow-a), transparent 62%),
  radial-gradient(820px 560px at 96% 6%, var(--glow-b), transparent 64%),
  radial-gradient(1200px 800px at 50% 108%, var(--glow-a), transparent 68%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  line-height: 1.5;
}

body.theme-lake {
  --glow-a: rgba(79, 127, 133, 0.20);
  --glow-b: rgba(217, 236, 238, 0.58);
  --veil: rgba(255, 255, 255, 0.62);
  --ink: #13242a;
  --muted: #54676d;
  --paper: #f4f8f8;
  --surface: #ffffff;
  --sage: #4f7f85;
  --sage-dark: #23525d;
  --clay: #a86d4c;
  --sky: #d9ecee;
  --line: rgba(19, 36, 42, 0.14);
  --shadow: 0 24px 70px rgba(19, 36, 42, 0.16);
  --header-bg: rgba(244, 248, 248, 0.9);
  --pricing-bg: #e2eff0;
  --soft-bg: #f0f6f6;
}

body.theme-sandstone {
  --glow-a: rgba(170, 98, 64, 0.16);
  --glow-b: rgba(231, 223, 207, 0.60);
  --veil: rgba(255, 253, 248, 0.64);
  --ink: #241c18;
  --muted: #6a5d55;
  --paper: #f8f4ed;
  --surface: #fffdf8;
  --sage: #7c7d5a;
  --sage-dark: #4e5539;
  --clay: #aa6240;
  --sky: #e7dfcf;
  --line: rgba(36, 28, 24, 0.14);
  --shadow: 0 24px 70px rgba(36, 28, 24, 0.16);
  --header-bg: rgba(248, 244, 237, 0.9);
  --pricing-bg: #eee5d5;
  --soft-bg: #f6efe4;
}

body.theme-forest {
  --glow-a: rgba(79, 116, 87, 0.20);
  --glow-b: rgba(217, 232, 218, 0.58);
  --veil: rgba(255, 255, 255, 0.62);
  --ink: #111f1a;
  --muted: #58665f;
  --paper: #f3f7f1;
  --surface: #ffffff;
  --sage: #4f7457;
  --sage-dark: #244837;
  --clay: #9e6a44;
  --sky: #d9e8da;
  --line: rgba(17, 31, 26, 0.14);
  --shadow: 0 24px 70px rgba(17, 31, 26, 0.16);
  --header-bg: rgba(243, 247, 241, 0.9);
  --pricing-bg: #e1eadc;
  --soft-bg: #f1f5ed;
}

body.theme-contrast {
  --glow-a: rgba(35, 92, 99, 0.16);
  --glow-b: rgba(216, 228, 230, 0.55);
  --veil: rgba(255, 255, 255, 0.72);
  --ink: #111111;
  --muted: #484848;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --sage: #235c63;
  --sage-dark: #073b43;
  --clay: #b2512e;
  --sky: #d8e4e6;
  --line: rgba(17, 17, 17, 0.2);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.2);
  --header-bg: rgba(247, 247, 242, 0.92);
  --pricing-bg: #e5e9e1;
  --soft-bg: #f3f3ec;
}

body.theme-dark {
  --glow-a: rgba(143, 184, 167, 0.16);
  --glow-b: rgba(35, 53, 47, 0.65);
  --veil: rgba(24, 35, 31, 0.58);
  --ink: #f4f1e8;
  --muted: #c7d0ca;
  --paper: #101816;
  --surface: #18231f;
  --sage: #8fb8a7;
  --sage-dark: #c4dfd2;
  --clay: #d18a5f;
  --sky: #23352f;
  --line: rgba(244, 241, 232, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --header-bg: rgba(16, 24, 22, 0.9);
  --pricing-bg: #14211d;
  --soft-bg: #1e2b27;
}

body.theme-dark .intro-band,
body.theme-dark .gallery-section,
body.theme-dark .location,
body.theme-dark .faq-section {
  background: var(--veil);
}

body.theme-dark .gallery-grid figure,
body.theme-dark .faq-list details {
  background: var(--surface);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(24, 33, 31, 0.07);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 12px;
  margin-inline: auto;
  max-width: 1260px;
  min-height: 64px;
  padding: 9px 12px 9px 16px;
  position: fixed;
  right: 12px;
  top: 12px;
  transition:
  box-shadow 200ms ease,
  background-color 200ms ease,
  top 200ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(24, 33, 31, 0.14);
  top: 8px;
}

.brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  flex: 1 1 auto;
  gap: 11px;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--sage-dark);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-logo {
  flex-shrink: 0;
  height: 42px;
  object-fit: contain;
  width: auto;
}

.brand-name {
  flex: 0 1 auto;
  font-size: 1rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 0.94rem;
  font-weight: 650;
  gap: 2px;
}

.main-nav a {
  border-radius: 999px;
  color: rgba(24, 33, 31, 0.78);
  padding: 9px 14px;
  text-decoration: none;
  transition:
  background-color 160ms ease,
  color 160ms ease;
  white-space: nowrap;
}

body.theme-dark .main-nav a {
  color: rgba(244, 241, 232, 0.82);
}

.main-nav a:hover {
  background: rgba(24, 33, 31, 0.06);
  background: color-mix(in srgb, var(--sage) 16%, transparent);
  color: var(--sage-dark);
}

.main-nav a.is-active {
  background: rgba(24, 33, 31, 0.09);
  background: color-mix(in srgb, var(--sage) 22%, transparent);
  color: var(--sage-dark);
}

.main-nav .nav-cta,
.main-nav .nav-cta.is-active {
  background: var(--sage-dark);
  color: #fff;
  margin-left: 6px;
  padding: 10px 18px;
}

.main-nav .nav-cta:hover {
  background: var(--sage);
  color: #fff;
}

body.theme-dark .main-nav .nav-cta,
body.theme-dark .main-nav .nav-cta:hover {
  color: #10201a;
}

.nav-toggle {
  align-items: center;
  flex: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  width: 44px;
}

.nav-toggle-bar {
  background: var(--ink);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition:
  transform 200ms ease,
  opacity 160ms ease;
  width: 19px;
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  background: rgba(12, 20, 17, 0.42);
  inset: 0;
  position: fixed;
  z-index: 25;
}

body.has-open-menu {
  overflow: hidden;
}

.hero {
  background: #111c18;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr);
  min-height: 100vh;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
  align-items: center;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
  linear-gradient(90deg, rgba(17, 28, 24, 0.46), rgba(17, 28, 24, 0.18) 50%, rgba(17, 28, 24, 0.46)),
  linear-gradient(0deg, rgba(17, 28, 24, 0.58), transparent 42%);
}

.hero-content {
  color: #fff;
  justify-self: start;
  padding-bottom: 0;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 1;
}

.hero-content.align-left {
  justify-self: start;
  text-align: left;
}

.hero-content.align-center {
  justify-self: center;
  text-align: center;
}

.hero-content.align-right {
  justify-self: end;
  text-align: right;
}

.hero-content.align-center h1,
.hero-content.align-center .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-content.align-right h1,
.hero-content.align-right .hero-copy {
  margin-left: auto;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c69f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 610px;
  white-space: pre-line;
}

.hero-actions {
  bottom: 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  left: clamp(18px, 4vw, 56px);
  margin-top: 0;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  z-index: 2;
}

.hero-actions.align-left {
  justify-content: flex-start;
}

.hero-actions.align-center {
  justify-content: center;
}

.hero-actions.align-right {
  justify-content: flex-end;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  transition:
  transform 140ms ease,
  background-color 140ms ease,
  border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--clay);
  color: #fff;
}

.button.primary:hover {
  background: #9f5f3b;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.button.ghost-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 6px;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

input,
select,
textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 112px;
  overflow: hidden;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(89, 117, 107, 0.18);
  outline: none;
}

.form-status {
  font-size: 0.92rem;
  margin: 12px 0;
}

.form-status {
  color: var(--muted);
  min-height: 22px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 84px clamp(18px, 4vw, 56px);
}

.split,
.pricing-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.intro-band {
  background: var(--veil);
}

.intro-band p,
.pricing-band p,
.location p {
  color: var(--muted);
  font-size: 1.05rem;
}

[data-content-text="intro.copy"],
[data-content-text="pricing.copy"],
[data-content-text="location.copy"],
.amenity-grid p,
.faq-list p,
.gallery-grid figcaption,
.gallery-lightbox figcaption {
  white-space: pre-line;
}

.facts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  margin: 0;
}

.facts div,
.amenity-grid article,
.price-list,
.map-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts div {
  min-width: 0;
  padding: 22px;
}

.facts dt {
  color: var(--sage-dark);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.facts dd {
  color: var(--muted);
  margin: 0;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 720px;
}

.amenity-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  margin-top: 32px;
}

.amenity-grid article {
  height: 190px;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: height 180ms ease, box-shadow 180ms ease;
}

.amenity-grid article.has-overflow {
  cursor: pointer;
}

.amenity-grid article.has-overflow::after {
  align-items: center;
  background: var(--sage-dark);
  border-radius: 999px;
  bottom: 14px;
  color: #fff;
  content: "+";
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 14px;
  width: 28px;
}

.amenity-grid article.is-expanded {
  box-shadow: 0 16px 34px rgba(24, 33, 31, 0.12);
  height: auto;
  min-height: 190px;
}

.amenity-grid article.is-expanded::after {
  content: "-";
}

.amenity-toggle {
  align-items: flex-start;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  font-weight: 900;
  gap: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.amenity-toggle:disabled {
  cursor: default;
}

.amenity-toggle span:last-child {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.amenity-toggle:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.amenity-grid p {
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.58;
  margin-bottom: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  padding-right: 32px;
  text-overflow: ellipsis;
  word-break: normal;
}

.amenity-grid article.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.icon {
  align-items: center;
  background: var(--sky);
  border-radius: 50%;
  color: var(--sage-dark);
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.pricing-band {
  background: var(--pricing-bg);
}

.virtual-tour-section {
  background: transparent;
}

.virtual-tour-description {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 720px;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-wrapper iframe,
.video-wrapper video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.gallery-section {
  background: var(--veil);
}

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 32px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gallery-filter button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 8px;
  padding: 9px 14px;
}

.gallery-filter small {
  align-items: center;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding: 0 7px;
}

.gallery-filter button.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.gallery-filter button.is-active small {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.gallery-grid figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
}

.gallery-open {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.gallery-open:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: -3px;
}

.gallery-grid img {
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.gallery-open:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  padding: 12px 14px;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(24, 33, 31, 0.86);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(18px, 4vw, 48px);
  position: fixed;
  z-index: 80;
}

.gallery-lightbox figure {
  margin: 0;
  max-width: min(1120px, 100%);
  width: 100%;
}

.gallery-lightbox img {
  background: #fff;
  border-radius: 8px;
  display: block;
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: #fff;
  font-weight: 850;
  margin-top: 12px;
  text-align: center;
}

.gallery-lightbox-close {
  align-items: center;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  top: clamp(18px, 4vw, 36px);
  width: 46px;
}

.lightbox-open {
  overflow: hidden;
}

.price-list {
  padding: 8px 24px;
}

.price-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 70px;
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  font-size: 1.18rem;
}

.season-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 10px 0 18px;
  padding: 0;
}

.season-list li {
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 2px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.season-list span,
.season-list strong {
  font-weight: 900;
}

.season-list small {
  color: var(--muted);
  grid-column: 1 / -1;
}

.location {
  background: var(--veil);
}

.map-panel {
  aspect-ratio: 1.25;
  background: #edf2ef;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.map-panel iframe,
.location-image {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.location-image {
  display: block;
  object-fit: cover;
}

.map-panel span {
  bottom: 24px;
  font-weight: 900;
  left: 24px;
  position: absolute;
}

.faq-section {
  background: var(--veil);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.toggle-row {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
}

.toggle-row input {
  min-height: auto;
  width: auto;
}

.toggle-row span {
  color: var(--ink);
}

.session-pill {
  align-self: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-weight: 850;
  justify-self: end;
  margin: 0 0 14px;
  padding: 10px 16px;
}

/* Aufgeklappter Bereich */
.empty-state {
  background: var(--soft-bg);
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 16px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 2px;
    left: 12px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: fixed;
    right: 12px;
    top: 84px;
    transform: translateY(-10px);
    transition:
    opacity 180ms ease,
    transform 180ms ease;
    z-index: 30;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    font-size: 1.02rem;
    padding: 13px 16px;
  }

  .main-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    align-content: end;
    grid-template-columns: 1fr;
    min-height: 100vh;
    padding-bottom: 56px;
    padding-top: 116px;
  }

  /* Die Schaltflaechen stehen auf schmalen Bildschirmen im Textfluss,
     sonst schieben sie sich ueber den Hero-Text. */

  .hero-actions {
    bottom: auto;
    left: auto;
    margin-top: 22px;
    position: static;
    right: auto;
  }

  .hero-actions .button {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .split,
.split.reverse,
.pricing-layout {
    grid-template-columns: 1fr;
  }

  /* Seitenverhaeltnis mit fester Mindesthoehe erzwingt sonst 400 px Breite
     und macht die ganze Seite seitlich scrollbar. */

  .map-panel {
    aspect-ratio: 4 / 3;
    min-height: 0;
    min-width: 0;
    width: 100%;
  }

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

  .gallery-grid {
    column-count: 2;
  }

  .session-pill {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .main-nav {
    font-size: 0.85rem;
    gap: 10px 14px;
  }

  .hero {
    padding: 142px 16px 28px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .amenity-grid,
.facts {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .section-inner {
    padding: 62px 16px;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    padding: 0 16px 6px;
    scroll-snap-type: x proximity;
  }

  .gallery-filter button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* --- Rechtliches als Popup ---------------------------------------------- */
.footer-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.footer-link:hover {
  text-decoration: underline;
}

.legal-dialog {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
  max-height: min(82vh, 760px);
  max-width: min(720px, 92vw);
  padding: 0;
  width: 100%;
}

.legal-dialog::backdrop {
  backdrop-filter: blur(3px);
  background: rgba(12, 20, 17, 0.55);
}

.legal-dialog-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 22px;
}

.legal-dialog-head h2 {
  margin: 0;
}

.legal-dialog-close {
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  padding: 2px 10px 6px;
}

.legal-dialog-close:hover {
  background: rgba(24, 33, 31, 0.07);
  color: var(--ink);
}

.legal-dialog-body {
  max-height: min(64vh, 560px);
  overflow-y: auto;
  padding: 20px 22px 26px;
}

.legal-dialog-body p {
  margin: 0;
  white-space: pre-line;
}

/* --- Sehr schmale Telefone -------------------------------------------- */
@media (max-width: 420px) {
  .site-header {
    gap: 10px;
    left: 8px;
    padding: 8px 8px 8px 12px;
    right: 8px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .main-nav {
    left: 8px;
    right: 8px;
    top: 76px;
  }
}

@media (max-width: 340px) {
  /* Auf Mini-Displays zaehlt nur noch Logo und Menue. */

  .brand-name {
    display: none;
  }
}

/* --- Verwaltungsbereich auf dem Webspace -------------------------------- */
.verwaltung-seite {
  background: var(--soft-bg);
}

.verwaltung-kopf {
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 14px clamp(14px, 4vw, 40px);
}

.verwaltung-kopf h1 {
  font-size: 1.3rem;
  margin: 0;
}

.verwaltung-kopf-rechts {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.verwaltung-inhalt {
  margin: 0 auto;
  max-width: 900px;
  padding: 18px clamp(14px, 4vw, 24px) 120px;
}

.anmelde-karte {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  margin: 40px auto;
  max-width: 380px;
  padding: 24px;
}

.verwaltung-reiter {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.verwaltung-reiter button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  padding: 9px 16px;
  white-space: nowrap;
}

.verwaltung-reiter button.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.verwaltung-formular {
  display: grid;
  gap: 16px;
}

.verwaltung-formular label {
  display: grid;
  font-weight: 650;
  gap: 6px;
}

.verwaltung-formular input,
.verwaltung-formular select,
.verwaltung-formular textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  padding: 10px 12px;
  width: 100%;
}

.feld-label {
  font-weight: 650;
}

.bild-feld-inhalt {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.bild-feld-inhalt img {
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 90px;
  object-fit: cover;
  width: 130px;
}

.listen-feld {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.listen-kopf {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.listen-kopf h3 {
  margin: 0;
}

.listen-zeile {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding-top: 12px;
}

.listen-zeile.schmal {
  grid-template-columns: 1fr auto;
}

.galerie-raster {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.galerie-karte {
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.galerie-karte img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.datei-knopf input {
  display: none;
}

.verwaltung-fussleiste {
  align-items: center;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(14px, 4vw, 40px);
  position: fixed;
  right: 0;
  z-index: 10;
}
