:root {
  --ink: #143d56;
  --ink-strong: #092c40;
  --sea: #347f91;
  --sea-soft: #dceff0;
  --gold: #d7ab45;
  --sand: #f4ead7;
  --cream: #fffaf0;
  --clay: #b46c48;
  --charcoal: #1f292b;
  --white: #ffffff;
  --muted: #617077;
  --line: rgba(20, 61, 86, 0.16);
  --shadow: 0 24px 70px rgba(9, 44, 64, 0.16);
  --radius: 8px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-strong);
  background: var(--cream);
  line-height: 1.6;
}

.home main {
  background: var(--cream);
  padding-top: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 8px 10px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(7, 24, 29, 0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.site-header.compact {
  position: sticky;
  transform: none;
  left: auto;
  top: 22px;
  margin: 22px auto 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(20, 61, 86, 0.1);
}

.brand span {
  display: grid;
  line-height: 1.04;
}

.brand strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 400;
}

.brand small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.86rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sea-soft);
  color: var(--ink-strong);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--sea);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 29, 0.76), rgba(9, 44, 64, 0.34) 46%, rgba(9, 44, 64, 0.08)),
    linear-gradient(0deg, rgba(7, 24, 29, 0.66), transparent 50%);
}

.hero-content {
  position: relative;
  width: min(700px, 100%);
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.84rem;
}

.hero h1,
.page-hero h1,
.booking-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.8rem;
  line-height: 0.9;
  font-weight: 400;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: none;
}

.button.primary {
  background: var(--gold);
  color: var(--ink-strong);
}

.button.secondary {
  background: var(--sea-soft);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.large {
  min-height: 58px;
  padding: 0 28px;
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible {
  background: #f2d88a;
  color: var(--ink-strong);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero-actions .button.ghost:hover,
.hero-actions .button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero-facts {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  top: auto;
  width: auto;
  transform: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 24, 29, 0.22);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.topic-cloud span,
.amenity-summary span {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 250, 240, 0.16);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero-facts span {
  min-height: 68px;
  padding: 12px 18px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.hero-facts span:last-child {
  border-right: 0;
}

.hero-facts small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.home-topic-nav {
  position: sticky;
  top: 98px;
  z-index: 12;
  width: min(1180px, calc(100% - 32px));
  min-height: 48px;
  margin: 12px auto 0;
  transform: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(20, 61, 86, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 10px 24px rgba(9, 44, 64, 0.06);
  backdrop-filter: blur(14px);
}

.home-topic-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-right: 1px solid rgba(20, 61, 86, 0.12);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-topic-nav a:last-child {
  border-right: 0;
}

.home-topic-nav a:hover,
.home-topic-nav a.is-active {
  background: var(--sea-soft);
  color: var(--ink-strong);
}

.intro-section,
.feature-band,
.location-preview,
.booking-band,
.page-main,
.legal-main {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.intro-section {
  padding: 76px 0 88px;
  scroll-margin-top: 110px;
}

.snap-section {
  scroll-margin-top: 110px;
}

.feature-band,
.location-preview {
  scroll-margin-top: 84px;
}

.booking-band {
  scroll-margin-top: 176px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 80px;
}

h2,
.intro-grid h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--ink);
}

p {
  margin: 0;
}

.flow > * + * {
  margin-top: 18px;
}

.snap-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.snap-panel {
  min-height: 520px;
  padding: clamp(34px, 7vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.snap-panel.dark {
  color: var(--white);
  background: var(--ink);
}

.snap-panel.dark h2,
.snap-panel.dark .text-link {
  color: var(--white);
}

.snap-panel.light {
  background: var(--sand);
}

.snap-panel p {
  max-width: 620px;
}

.text-link {
  margin-top: 26px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.feature-band {
  padding: 104px 0;
}

.feature-band.muted {
  background: var(--sand);
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.content-block,
.amenity-group,
.guestbook-form,
.guestbook-entry {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(9, 44, 64, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-strong);
  font-weight: 900;
}

.location-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 96px 0;
  align-items: center;
}

.location-copy p {
  max-width: 620px;
  margin-bottom: 26px;
}

.distance-list,
.distance-grid {
  display: grid;
  gap: 14px;
}

.distance-list {
  grid-template-columns: repeat(2, 1fr);
}

.distance-list div,
.distance-grid div {
  min-height: 132px;
  padding: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.distance-list strong,
.distance-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--sea);
}

.booking-band {
  margin-bottom: 92px;
  padding: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
}

.booking-band h2 {
  color: var(--white);
  font-size: 3rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px max(16px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.page-main {
  padding: 76px 0 92px;
}

.subpage .page-main,
.subpage .legal-main {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 86px;
  padding: 0 0 86px;
  background: var(--cream);
  border: 1px solid rgba(20, 61, 86, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(9, 44, 64, 0.08);
  overflow: hidden;
}

.page-hero,
.booking-page {
  position: relative;
  height: 520px;
  min-height: 520px;
  max-width: none;
  padding: 94px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 24, 29, 0.72), rgba(9, 44, 64, 0.34) 52%, rgba(9, 44, 64, 0.08)),
    url("../../Bilder/hero-terrasse-real.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero {
  border-bottom: 0;
  margin-bottom: 0;
}

.page-hero h1,
.booking-page h1 {
  max-width: 850px;
  font-size: 4.6rem;
  color: var(--white);
}

.page-hero p:last-child,
.booking-page p {
  max-width: 720px;
  margin-top: 22px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 18px 48px 0;
}

.content-block {
  padding: 30px;
  background: rgba(255, 253, 247, 0.86);
}

.content-block.wide {
  grid-column: 1 / -1;
}

.content-block h2,
.amenity-group h2,
.legal-main h2 {
  font-size: 2.2rem;
}

.amenity-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
  padding: 18px 48px 0;
}

.amenity-summary {
  position: sticky;
  top: 118px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.amenity-summary span {
  border-color: rgba(255, 255, 255, 0.2);
}

.amenity-groups {
  display: grid;
  gap: 18px;
}

.amenity-group {
  padding: 30px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.editor-note {
  border: 1px dashed rgba(180, 108, 72, 0.55);
  border-radius: 8px;
  background: rgba(215, 171, 69, 0.13);
  color: #7a4d20;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.check-list .editor-note {
  padding-left: 12px;
}

.check-list .editor-note::before {
  display: none;
}

.amenity-summary .editor-note {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(215, 171, 69, 0.2);
  color: var(--sand);
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 16px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.location-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 72px;
  padding: 18px 48px 0;
}

.location-overview,
.distance-section,
.location-note {
  padding: 18px 48px 0;
}

.location-overview {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
}

.location-card,
.distance-card,
.location-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 40px rgba(9, 44, 64, 0.07);
}

.location-card {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.location-card-primary {
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.9), rgba(244, 234, 215, 0.9)),
    var(--white);
}

.location-card h2 {
  font-size: 2.3rem;
}

.location-card h3,
.distance-card h3 {
  margin-top: 14px;
}

.location-card strong {
  margin: 6px 0 8px;
  color: var(--sea);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.pictogram {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sea-soft);
  color: var(--ink);
}

.pictogram svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.distance-section {
  margin-top: 54px;
}

.distance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.distance-card {
  min-height: 310px;
  padding: 26px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.distance-card dl {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.distance-card dl div {
  min-height: 42px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(20, 61, 86, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.distance-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.distance-card dt,
.distance-card dd {
  margin: 0;
}

.distance-card dt {
  color: var(--muted);
}

.distance-card dd {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.location-note {
  margin: 54px 48px 0;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.location-note h2 {
  color: var(--white);
  font-size: 2.7rem;
}

.location-note p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.map-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(52, 127, 145, 0.1), rgba(215, 171, 69, 0.2)),
    repeating-linear-gradient(45deg, rgba(20, 61, 86, 0.08) 0 1px, transparent 1px 22px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.map-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  color: var(--ink);
}

.distance-grid {
  grid-template-columns: repeat(3, 1fr);
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  padding: 0 48px;
}

.topic-cloud span {
  border-color: var(--line);
  background: var(--white);
}

.booking-page {
  height: 520px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.guestbook-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: start;
  padding: 18px 48px 0;
}

.guestbook-form {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.guestbook-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.guestbook-form input,
.guestbook-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink-strong);
  background: var(--white);
}

.guestbook-entries {
  display: grid;
  gap: 16px;
}

.guestbook-entry {
  padding: 24px;
}

.guestbook-entry time {
  color: var(--muted);
  font-size: 0.9rem;
}

.guestbook-disabled-note {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.72), rgba(244, 234, 215, 0.7)),
    rgba(255, 253, 247, 0.9);
}

.guestbook-disabled-note h3 {
  margin-bottom: 12px;
}

.guestbook-disabled-note p {
  color: var(--muted);
}

.legal-main {
  max-width: 840px;
  padding: 110px 0 92px;
}

.subpage .legal-main {
  max-width: 1180px;
}

.subpage .feature-band.muted {
  width: auto;
  max-width: none;
  margin: 64px -48px;
  padding: 76px 48px;
}

.legal-content {
  padding: 18px 48px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 48px 0;
}

.section-intro-heading {
  padding: 46px 48px 0;
}

.section-intro-heading h2 {
  margin-bottom: 0;
  font-size: 3rem;
}

.photo-tile,
.photo-placeholder {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 40px rgba(9, 44, 64, 0.07);
}

.photo-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tile img {
  width: 100%;
  height: calc(100% - 48px);
  min-height: 260px;
  object-fit: cover;
}

.photo-tile figcaption {
  min-height: 48px;
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 900;
}

.photo-placeholder {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.9), rgba(244, 234, 215, 0.9)),
    var(--white);
}

.photo-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.photo-placeholder p {
  color: var(--muted);
}

.legal-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 400;
  margin: 0 0 30px;
  color: var(--ink);
}

.legal-main .page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: 4.6rem;
  color: var(--white);
}

.legal-main h2 {
  margin-top: 34px;
}

.cookie-dialog.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 24px;
  background: rgba(7, 24, 29, 0.62);
  backdrop-filter: blur(3px);
}

.cookie-dialog[hidden] {
  display: none !important;
}

.cookie-consent__panel {
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(21, 67, 88, 0.24);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 28px 80px rgba(7, 24, 29, 0.34);
}

.cookie-consent__head h2 {
  margin: 4px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.cookie-consent__head p,
.cookie-option p {
  color: #244756;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 20px 0 12px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(21, 67, 88, 0.22);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(9, 44, 64, 0.05);
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.02rem;
}

.cookie-option p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-option--toggle {
  cursor: pointer;
}

.cookie-option--toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-required {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-switch {
  width: 54px;
  height: 30px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(21, 67, 88, 0.28);
  transition: background 0.2s ease;
}

.cookie-switch::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(7, 24, 29, 0.18);
  transition: transform 0.2s ease;
}

.cookie-option input:checked + .cookie-switch {
  background: var(--ink);
}

.cookie-option input:checked + .cookie-switch::before {
  transform: translateX(24px);
}

.cookie-consent__meta {
  margin: 14px 0 18px;
}

.cookie-consent__meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-cookie-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

@media (max-width: 1040px) {
  .site-header {
    top: 12px;
  }

  .site-header.compact {
    top: 12px;
    margin-top: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .home main {
    background: var(--cream);
    padding-top: 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 116px 20px 92px;
    justify-content: center;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: min(650px, 100%);
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }

  .hero-facts span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-topic-nav {
    top: 88px;
    min-height: 50px;
    grid-template-columns: repeat(5, 1fr);
  }

  .home-topic-nav a {
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .intro-grid,
  .snap-section,
  .feature-grid,
  .location-preview,
  .content-grid,
  .amenity-layout,
  .location-detail,
  .location-overview,
  .distance-card-grid,
  .location-note,
  .guestbook-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 5.8rem;
  }

  .page-hero h1,
  .booking-page h1,
  .legal-main .page-hero h1 {
    font-size: 3.8rem;
  }

  .hero-copy {
    font-size: 1.2rem;
  }

  h2,
  .intro-grid h2 {
    font-size: 2.7rem;
  }

  .distance-list strong,
  .distance-grid strong {
    font-size: 2.7rem;
  }

  .booking-band h2,
  .content-block h2,
  .amenity-group h2,
  .legal-main h2 {
    font-size: 2rem;
  }

  .legal-main h1 {
    font-size: 4rem;
  }

  .amenity-summary {
    position: static;
  }

  .distance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage .page-main,
  .subpage .legal-main {
    padding: 0 0 72px;
  }

  .subpage .feature-band.muted {
    margin: 54px -28px;
    padding: 64px 28px;
  }

  .content-grid,
  .amenity-layout,
  .location-detail,
  .location-overview,
  .distance-section,
  .guestbook-layout,
  .legal-content,
  .photo-grid {
    padding: 16px 28px 0;
  }

  .location-note {
    margin: 44px 28px 0;
  }

  .section-intro-heading {
    padding: 40px 28px 0;
  }

  .section-intro-heading h2 {
    font-size: 2.5rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile.large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 106px 14px 82px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .page-hero h1,
  .booking-page h1,
  .legal-main h1 {
    font-size: 3.2rem;
  }

  .legal-main .page-hero h1 {
    font-size: 3.2rem;
  }

  h2,
  .intro-grid h2 {
    font-size: 2.2rem;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts span {
    min-height: 58px;
    padding: 10px 12px;
    border-right: 0;
  }

  .hero-facts small {
    font-size: 0.66rem;
  }

  .hero-facts strong {
    font-size: 1.05rem;
  }

  .home-topic-nav {
    width: calc(100% - 20px);
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .home-topic-nav a {
    min-width: 108px;
    flex: 0 0 auto;
  }

  .snap-panel {
    min-height: 430px;
  }

  .distance-list,
  .distance-grid {
    grid-template-columns: 1fr;
  }

  .subpage .page-main,
  .subpage .legal-main {
    width: min(100% - 20px, 1180px);
    padding: 0 0 62px;
  }

  .subpage .feature-band.muted {
    margin: 44px -18px;
    padding: 54px 18px;
  }

  .page-hero,
  .booking-page {
    height: 430px;
    min-height: 430px;
    padding: 82px 18px 34px;
  }

  .content-grid,
  .amenity-layout,
  .location-detail,
  .location-overview,
  .distance-section,
  .guestbook-layout,
  .legal-content,
  .photo-grid {
    padding: 14px 18px 0;
  }

  .distance-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .distance-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .distance-card dd {
    text-align: center;
  }

  .location-note {
    margin: 38px 18px 0;
    padding: 24px;
  }

  .section-intro-heading {
    padding: 34px 18px 0;
  }

  .section-intro-heading h2 {
    font-size: 2rem;
  }
}

/* Owner content and photo integration */
.page-hero,
.booking-page {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 29, 0.72), rgba(9, 44, 64, 0.34) 52%, rgba(9, 44, 64, 0.08)),
    var(--hero-image, url("../../Bilder/Stieper%20Nordmoewe%20Haus%20(18).jpeg"));
  background-position: center;
}

.image-panel {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(9, 44, 64, 0.68), rgba(9, 44, 64, 0.2)),
    var(--panel-image);
  background-size: cover;
  background-position: center;
}

.image-panel h2,
.image-panel .text-link {
  color: var(--white);
}

.media-block {
  overflow: hidden;
  padding-top: 0;
}

.media-block img {
  width: calc(100% + 60px);
  max-width: none;
  height: 250px;
  margin: 0 -30px 24px;
  object-fit: cover;
}

.photo-grid-rich {
  grid-template-columns: repeat(4, 1fr);
}

.photo-grid-rich .photo-tile {
  min-height: 300px;
}

.photo-grid-rich .photo-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid-rich .photo-tile img {
  height: calc(100% - 48px);
}

.topic-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.guestbook-disabled-note .button {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .photo-grid-rich {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .photo-grid-rich {
    grid-template-columns: 1fr;
  }

  .photo-grid-rich .photo-tile.large {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Sharper house hero and readable photo captions */
.hero-media {
  object-position: center center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 29, 0.7), rgba(9, 44, 64, 0.34) 45%, rgba(9, 44, 64, 0.1)),
    linear-gradient(0deg, rgba(7, 24, 29, 0.6), transparent 54%);
}

.page-hero.hero-house,
.booking-page.hero-house {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 29, 0.76), rgba(9, 44, 64, 0.42) 52%, rgba(9, 44, 64, 0.12)),
    linear-gradient(0deg, rgba(7, 24, 29, 0.48), transparent 58%),
    url("../../Bilder/hero-terrasse-real.jpg");
  background-size: cover;
  background-position: center center;
}

.photo-tile,
.photo-grid-rich .photo-tile {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.photo-tile img,
.photo-grid-rich .photo-tile img {
  flex: 1 1 auto;
  height: auto;
  min-height: 250px;
}

.photo-tile figcaption {
  flex: 0 0 auto;
  min-height: 0;
  padding: 14px 16px 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  background: rgba(255, 253, 247, 0.96);
}

.photo-grid-rich .photo-tile.large {
  min-height: 520px;
}

@media (max-width: 560px) {
  .photo-tile,
  .photo-grid-rich .photo-tile,
  .photo-grid-rich .photo-tile.large {
    min-height: 0;
  }

  .photo-tile img,
  .photo-grid-rich .photo-tile img {
    min-height: 220px;
  }
}

/* Real terrace hero and photo lightbox */
.hero-media {
  object-position: center 58%;
  image-rendering: auto;
}

.page-hero.hero-terrace,
.booking-page.hero-terrace {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 29, 0.78), rgba(9, 44, 64, 0.44) 52%, rgba(9, 44, 64, 0.14)),
    linear-gradient(0deg, rgba(7, 24, 29, 0.5), transparent 58%),
    url("../../Bilder/hero-terrasse-real.jpg");
  background-size: cover;
  background-position: center 58%;
}

.photo-tile {
  cursor: zoom-in;
}

.photo-tile img {
  transition: transform 0.22s ease, filter 0.22s ease;
}

.photo-tile:hover img {
  transform: scale(1.015);
  filter: saturate(1.03);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 24, 29, 0.86);
  backdrop-filter: blur(10px);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox__inner {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.photo-lightbox img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: #0b2230;
}

.photo-lightbox figcaption {
  padding: 16px 20px;
  color: var(--ink);
  font-weight: 900;
}

.photo-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(7, 24, 29, 0.78);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 560px) {
  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox__inner {
    max-height: calc(100vh - 24px);
  }

  .photo-lightbox img {
    max-height: calc(100vh - 110px);
  }
}

/* Linked location highlights */
.distance-card dd a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.distance-card dd a:hover {
  color: var(--sea);
}

/* Larger photo gallery with carousel lightbox */
.photo-grid.photo-grid-rich {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
  gap: 16px;
  padding-top: 22px;
}

.photo-grid-rich .photo-tile,
.photo-grid-rich .photo-tile.large {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-height: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.photo-grid-rich .photo-tile.large,
.photo-grid-rich .photo-tile:nth-child(9n + 1) {
  grid-column: span 6;
  grid-row: span 4;
}

.photo-grid-rich .photo-tile:nth-child(7n + 3),
.photo-grid-rich .photo-tile:nth-child(8n + 6) {
  grid-column: span 4;
  grid-row: span 4;
}

.photo-grid-rich .photo-tile:nth-child(10n + 5) {
  grid-column: span 8;
  grid-row: span 3;
}

.photo-grid-rich .photo-tile img,
.photo-grid-rich .photo-tile.large img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.photo-grid-rich .photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 24, 29, 0.18), transparent 46%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.photo-grid-rich .photo-tile:hover img,
.photo-grid-rich .photo-tile:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.photo-grid-rich .photo-tile:hover::after,
.photo-grid-rich .photo-tile:focus-visible::after {
  opacity: 1;
}

.photo-grid-rich .photo-tile:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.photo-lightbox {
  padding: clamp(12px, 3vw, 34px);
}

.photo-lightbox__inner {
  width: min(1240px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: rgba(7, 24, 29, 0.96);
}

.photo-lightbox img {
  width: 100%;
  height: min(82vh, 840px);
  max-height: none;
  object-fit: contain;
  cursor: default;
}

.photo-lightbox__counter {
  min-height: 42px;
  padding: 10px 20px 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 24, 29, 0.96);
  font-weight: 800;
  text-align: center;
}

.photo-lightbox__nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.9);
  color: var(--ink);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.photo-lightbox__nav--prev {
  left: 16px;
}

.photo-lightbox__nav--next {
  right: 16px;
}

.photo-lightbox__close {
  z-index: 2;
}

@media (max-width: 1040px) {
  .photo-grid.photo-grid-rich {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 105px;
    padding-inline: 28px;
  }

  .photo-grid-rich .photo-tile,
  .photo-grid-rich .photo-tile.large,
  .photo-grid-rich .photo-tile:nth-child(9n + 1),
  .photo-grid-rich .photo-tile:nth-child(7n + 3),
  .photo-grid-rich .photo-tile:nth-child(8n + 6),
  .photo-grid-rich .photo-tile:nth-child(10n + 5) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .photo-grid-rich .photo-tile:nth-child(5n + 1) {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .photo-grid.photo-grid-rich {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
    padding-inline: 18px;
  }

  .photo-grid-rich .photo-tile,
  .photo-grid-rich .photo-tile.large,
  .photo-grid-rich .photo-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .photo-lightbox__stage {
    height: 76vh;
  }

  .photo-lightbox__nav {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }
}

/* Homepage map and booking refinements */
.reviews-map-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: stretch;
  scroll-margin-top: 112px;
}

.reviews-map-copy {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.72), rgba(255, 253, 247, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(9, 44, 64, 0.08);
}

.reviews-map-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.reviews-map-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
}

.map-preview {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 61, 86, 0.14);
  background: var(--sand);
  box-shadow: 0 24px 70px rgba(9, 44, 64, 0.12);
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
  pointer-events: none;
}

.map-preview .map-open-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(0deg, rgba(7, 24, 29, 0.42), transparent 52%);
}

.map-preview .map-open-link span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(7, 24, 29, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.map-review-link {
  background: var(--white);
  border-color: rgba(20, 61, 86, 0.16);
  box-shadow: 0 12px 30px rgba(9, 44, 64, 0.08);
}

.booking-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 61, 86, 0.98), rgba(9, 44, 64, 0.94)),
    var(--ink);
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(215, 171, 69, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(255, 250, 240, 0.08), transparent 48%);
  pointer-events: none;
}

.booking-band > * {
  position: relative;
}

.booking-link {
  min-width: min(330px, 100%);
  min-height: 70px;
  padding: 12px 22px;
  display: inline-grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  column-gap: 14px;
  color: var(--ink-strong);
  background:
    linear-gradient(135deg, #f2d88a, var(--gold));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: none;
}

.booking-link-copy {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 2px;
}

.booking-link-title {
  font-size: 1.02rem;
  line-height: 1.15;
}

.booking-external-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(9, 44, 64, 0.18);
  background: rgba(255, 253, 247, 0.48);
  color: var(--ink-strong);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: none;
}

.booking-link small {
  color: rgba(9, 44, 64, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.booking-link:hover,
.booking-link:focus {
  color: var(--ink-strong);
  background:
    linear-gradient(135deg, #f2d88a, var(--gold));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.booking-link:focus-visible {
  outline: 2px solid rgba(21, 67, 88, 0.42);
  outline-offset: 4px;
}

.booking-link-hero {
  margin-top: 28px;
}

@media (min-width: 1041px) {
  .home-topic-nav {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1040px) {
  .reviews-map-band {
    grid-template-columns: 1fr;
    padding: 28px 0 76px;
  }
}

@media (max-width: 560px) {
  .reviews-map-band {
    width: min(100% - 20px, 1180px);
    padding-bottom: 58px;
  }

  .map-preview,
  .map-preview iframe {
    min-height: 330px;
  }

  .booking-link {
    width: 100%;
  }
}

/* Combined booking and conditions page */
.booking-combined .section-intro-heading {
  padding-top: 52px;
}

.booking-overview-grid,
.booking-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 18px 48px 0;
}

.booking-highlight {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.92), rgba(255, 253, 247, 0.96)),
    var(--white);
}

.booking-highlight .booking-link {
  margin-top: 28px;
}

.booking-terms {
  scroll-margin-top: 118px;
}

.booking-notice {
  margin: 18px 48px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.booking-notice .eyebrow {
  margin-bottom: 10px;
}

.booking-notice p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1040px) {
  .booking-overview-grid,
  .booking-terms-grid {
    grid-template-columns: 1fr;
    padding: 16px 28px 0;
  }

  .booking-highlight {
    grid-row: auto;
  }

  .booking-notice {
    margin: 18px 28px 0;
  }
}

@media (max-width: 560px) {
  .booking-overview-grid,
  .booking-terms-grid {
    padding: 14px 18px 0;
  }

  .booking-notice {
    margin: 16px 18px 0;
    padding: 24px;
  }
}

/* Combined legal page */
.legal-combined {
  scroll-behavior: smooth;
}

.legal-combined .section-intro-heading {
  padding-top: 52px;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 14px 40px rgba(9, 44, 64, 0.07);
}

.legal-card-primary {
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.9), rgba(244, 234, 215, 0.86)),
    var(--white);
}

.legal-card h2 {
  margin-top: 0;
  font-size: 2rem;
}

.legal-card a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.privacy-section {
  margin-top: 36px;
  scroll-margin-top: 118px;
}

@media (max-width: 1040px) {
  .legal-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Guest document portal */
.guest-login-link {
  border: 1px solid rgba(20, 61, 86, 0.16);
  background: rgba(255, 253, 247, 0.58);
}

.portal-login,
.portal-dashboard {
  padding: 48px;
}

.portal-login {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.portal-login > div,
.portal-login-form,
.portal-admin-panel .content-block,
.document-library {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 14px 40px rgba(9, 44, 64, 0.07);
}

.portal-login > div {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.82), rgba(255, 253, 247, 0.96)),
    var(--white);
}

.portal-login h2,
.portal-dashboard h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.portal-login-form,
.portal-inline-form {
  display: grid;
  gap: 16px;
}

.portal-login-form {
  padding: 30px;
}

.portal-login-form label,
.portal-inline-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.portal-login-form input,
.portal-inline-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink-strong);
  background: var(--white);
}

.portal-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-message {
  min-height: 1.4em;
  color: var(--sea);
  font-weight: 800;
}

.portal-message.is-error {
  color: var(--clay);
}

.portal-dashboard-head,
.document-library-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.portal-admin-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.document-library {
  padding: 28px;
}

.document-library-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.document-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.document-item,
.document-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(20, 61, 86, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.document-item h3,
.document-empty h3 {
  margin-bottom: 4px;
}

.document-item p,
.document-empty p,
.document-library-head p {
  color: var(--muted);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button.ghost-danger {
  border-color: rgba(180, 108, 72, 0.36);
  color: var(--clay);
  background: rgba(180, 108, 72, 0.08);
}

@media (max-width: 1040px) {
  .portal-login,
  .portal-admin-panel {
    grid-template-columns: 1fr;
  }

  .portal-login,
  .portal-dashboard {
    padding: 34px 28px;
  }
}

@media (max-width: 560px) {
  .portal-login,
  .portal-dashboard {
    padding: 28px 18px;
  }

  .portal-dashboard-head,
  .document-library-head,
  .document-item,
  .document-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .document-actions,
  .document-actions .button {
    width: 100%;
  }
}

/* Homepage jump target and review section tuning */
@media (min-width: 1041px) {
  .intro-section,
  .snap-section,
  .feature-band,
  .location-preview,
  .reviews-map-band {
    scroll-margin-top: 126px;
  }

  .intro-section {
    padding-bottom: 104px;
  }

  .snap-panel {
    min-height: 500px;
    justify-content: center;
    padding-bottom: clamp(68px, 7vw, 100px);
  }

  .feature-band {
    padding: 84px 0 104px;
  }

  .location-preview {
    padding: 78px 0 106px;
  }
}

.reviews-map-band {
  padding: 24px 0 60px;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  scroll-margin-top: 126px;
}

.reviews-map-copy {
  padding: clamp(24px, 4vw, 34px);
}

.reviews-map-copy h2 {
  font-size: clamp(2.05rem, 3.8vw, 3.25rem);
  line-height: 1.03;
}

.reviews-map-copy p:not(.eyebrow) {
  margin-bottom: 20px;
}

.map-preview,
.map-preview iframe {
  min-height: 350px;
}

.map-preview .map-open-link {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(7, 24, 29, 0.34), transparent 42%),
    linear-gradient(0deg, rgba(7, 24, 29, 0.2), transparent 48%);
}

.booking-band {
  scroll-margin-top: 150px;
}

@media (max-width: 1040px) {
  .reviews-map-band {
    padding: 22px 0 66px;
    gap: 18px;
  }

  .map-preview,
  .map-preview iframe {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .reviews-map-band {
    padding-bottom: 54px;
  }

  .map-preview,
  .map-preview iframe {
    min-height: 300px;
  }
}

/* Subpage first-content visibility above browser link preview */
.subpage .page-hero + .section-intro-heading,
.subpage .booking-page + .section-intro-heading {
  padding-top: 18px;
}

.subpage .page-hero + .section-intro-heading .eyebrow,
.subpage .booking-page + .section-intro-heading .eyebrow {
  margin-bottom: 10px;
}

.booking-combined .section-intro-heading,
.legal-combined .section-intro-heading {
  padding-top: 18px;
}

.guest-area .page-hero + .portal-login {
  padding-top: 24px;
}

@media (max-width: 1040px) {
  .subpage .page-hero + .section-intro-heading,
  .subpage .booking-page + .section-intro-heading,
  .booking-combined .section-intro-heading,
  .legal-combined .section-intro-heading {
    padding-top: 16px;
  }

  .guest-area .page-hero + .portal-login {
    padding-top: 20px;
  }
}

@media (max-width: 560px) {
  .subpage .page-hero + .section-intro-heading,
  .subpage .booking-page + .section-intro-heading,
  .booking-combined .section-intro-heading,
  .legal-combined .section-intro-heading {
    padding-top: 14px;
  }
}

/* Homepage Ausstattung and Lage viewport fit */
@media (min-width: 1041px) {
  #ausstattung-home,
  #lage-home {
    scroll-margin-top: 124px;
  }

  #ausstattung-home.feature-band {
    padding: 54px 0 66px;
  }

  #ausstattung-home .section-heading {
    margin-bottom: 22px;
    max-width: 680px;
  }

  #ausstattung-home .section-heading h2 {
    font-size: clamp(2.7rem, 4.15vw, 3.45rem);
    line-height: 1.03;
  }

  #ausstattung-home .feature-grid {
    gap: 14px;
  }

  #ausstattung-home .feature-card {
    padding: 20px;
  }

  #ausstattung-home .feature-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
  }

  #ausstattung-home .feature-card h3 {
    margin-bottom: 6px;
  }

  #ausstattung-home .feature-card p {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  #lage-home.location-preview {
    padding: 50px 0 66px;
    gap: 30px;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
  }

  #lage-home .location-copy h2 {
    font-size: clamp(2.8rem, 4.55vw, 3.75rem);
    line-height: 1.03;
    margin-bottom: 16px;
  }

  #lage-home .location-copy p {
    margin-bottom: 18px;
    line-height: 1.5;
  }

  #lage-home .distance-list {
    gap: 10px;
  }

  #lage-home .distance-list div {
    min-height: 104px;
    padding: 16px 18px;
  }

  #lage-home .distance-list strong {
    font-size: 2.9rem;
  }
}

@media (max-width: 1040px) {
  #ausstattung-home.feature-band,
  #lage-home.location-preview {
    padding-bottom: 72px;
  }
}

/* Lage attractions and activity links */
.excursion-section,
.local-activities-section {
  padding: 18px 48px 0;
  margin-top: 54px;
}

.compact-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.compact-heading p:last-child {
  max-width: 660px;
  color: var(--muted);
}

.excursion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.excursion-card {
  position: relative;
  min-height: 148px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(20, 61, 86, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(244, 234, 215, 0.62));
  box-shadow: 0 14px 34px rgba(9, 44, 64, 0.06);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.excursion-card::after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sea-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 900;
}

.excursion-card:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 127, 145, 0.34);
  box-shadow: 0 18px 42px rgba(9, 44, 64, 0.1);
}

.excursion-card--plain:hover {
  transform: none;
  border-color: rgba(20, 61, 86, 0.12);
  box-shadow: 0 14px 34px rgba(9, 44, 64, 0.06);
}

.excursion-card--plain::after {
  content: "";
  background: linear-gradient(135deg, var(--sea-soft), rgba(215, 171, 69, 0.22));
}

.excursion-card__meta,
.excursion-card__link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.excursion-card strong {
  max-width: calc(100% - 42px);
  font-size: 1.18rem;
  line-height: 1.25;
}

.excursion-card__link {
  color: var(--sea);
  letter-spacing: 0;
  text-transform: none;
}

.local-activities-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 32px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: start;
  box-shadow: 0 18px 46px rgba(9, 44, 64, 0.11);
}

.local-activities-panel h2 {
  color: var(--white);
  font-size: 2.5rem;
}

.local-activities-panel p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.local-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.local-activity-grid a,
.local-activity-grid span {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  line-height: 1.25;
  text-decoration: none;
}

.local-activity-grid a {
  color: var(--sand);
  font-weight: 900;
}

.local-activity-grid a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

@media (max-width: 1040px) {
  .excursion-section,
  .local-activities-section {
    padding: 16px 28px 0;
  }

  .excursion-grid,
  .local-activities-panel {
    grid-template-columns: 1fr;
  }

  .local-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .excursion-section,
  .local-activities-section {
    padding: 14px 18px 0;
    margin-top: 42px;
  }

  .excursion-grid,
  .local-activity-grid {
    grid-template-columns: 1fr;
  }

  .local-activities-panel {
    padding: 24px;
  }
}

/* Homepage Lage browser preview clearance */
@media (min-width: 1041px) {
  #lage-home.location-preview {
    padding: 38px 0 52px;
    gap: 26px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  #lage-home .location-copy h2 {
    font-size: clamp(2.35rem, 3.55vw, 3.05rem);
    line-height: 1.02;
    margin-bottom: 14px;
    max-width: 680px;
  }

  #lage-home .location-copy p {
    max-width: 650px;
    margin-bottom: 12px;
    line-height: 1.42;
  }

  #lage-home .location-copy .button {
    padding: 12px 20px;
    min-height: 48px;
  }

  #lage-home .distance-list {
    gap: 8px 10px;
    align-self: center;
  }

  #lage-home .distance-list div {
    min-height: 92px;
    padding: 12px 16px;
  }

  #lage-home .distance-list strong {
    font-size: 2.55rem;
  }
}

/* Homepage topic sections balanced viewport height */
@media (min-width: 1041px) {
  #ueberblick,
  #ausstattung-home,
  #lage-home {
    min-height: calc(100svh - 202px);
    scroll-margin-top: 126px;
    box-sizing: border-box;
  }

  #ueberblick.intro-section {
    padding: clamp(76px, 8vh, 104px) 0 clamp(104px, 11vh, 132px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #ausstattung-home.feature-band {
    padding: clamp(70px, 8vh, 96px) 0 clamp(104px, 11vh, 132px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #ausstattung-home .section-heading {
    margin-bottom: 28px;
    max-width: 720px;
  }

  #ausstattung-home .section-heading h2 {
    font-size: clamp(2.95rem, 4.45vw, 3.75rem);
    line-height: 1.04;
  }

  #ausstattung-home .feature-grid {
    gap: 16px;
  }

  #ausstattung-home .feature-card {
    padding: 22px;
  }

  #ausstattung-home .feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
  }

  #ausstattung-home .feature-card p {
    font-size: 1rem;
    line-height: 1.52;
  }

  #lage-home.location-preview {
    min-height: calc(100svh - 202px);
    padding: clamp(66px, 7.5vh, 92px) 0 clamp(104px, 11vh, 132px);
    gap: clamp(30px, 3vw, 42px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  #lage-home .location-copy h2 {
    font-size: clamp(2.65rem, 4.1vw, 3.55rem);
    line-height: 1.04;
    margin-bottom: 16px;
    max-width: 760px;
  }

  #lage-home .location-copy p {
    max-width: 650px;
    margin-bottom: 18px;
    line-height: 1.48;
  }

  #lage-home .location-copy .button {
    min-height: 50px;
    padding: 13px 22px;
  }

  #lage-home .distance-list {
    gap: 12px;
    align-self: center;
  }

  #lage-home .distance-list div {
    min-height: 110px;
    padding: 16px 18px;
  }

  #lage-home .distance-list strong {
    font-size: 2.95rem;
  }
}

/* Subpage first fold content clearance */
@media (min-width: 1041px) {
  .subpage .page-hero + .section-intro-heading,
  .subpage .booking-page + .section-intro-heading {
    padding-top: 18px;
  }

  .subpage .page-hero + .section-intro-heading .eyebrow,
  .subpage .booking-page + .section-intro-heading .eyebrow {
    margin-bottom: 0;
  }

  .subpage .page-hero + .section-intro-heading h2,
  .subpage .booking-page + .section-intro-heading h2 {
    margin-top: clamp(96px, 13vh, 148px);
  }

  .guest-area .page-hero + .portal-login {
    padding-top: clamp(120px, 15vh, 170px);
  }
}

@media (max-width: 1040px) {
  .subpage .page-hero + .section-intro-heading h2,
  .subpage .booking-page + .section-intro-heading h2 {
    margin-top: 124px;
  }

  .guest-area .page-hero + .portal-login {
    padding-top: 72px;
  }
}

@media (max-width: 560px) {
  .subpage .page-hero + .section-intro-heading h2,
  .subpage .booking-page + .section-intro-heading h2 {
    margin-top: 44px;
  }

  .guest-area .page-hero + .portal-login {
    padding-top: 58px;
  }
}

/* Homepage Wohnen light panel readability */
#wohnen .snap-panel.light.image-panel {
  color: var(--ink-strong);
  background:
    linear-gradient(90deg, rgba(244, 234, 215, 0.94), rgba(255, 250, 240, 0.84)),
    var(--panel-image) center / cover;
}

#wohnen .snap-panel.light.image-panel h2,
#wohnen .snap-panel.light.image-panel .text-link {
  color: var(--ink);
}

#wohnen .snap-panel.light.image-panel p:not(.eyebrow) {
  color: var(--ink-strong);
}

#wohnen .snap-panel.light.image-panel .text-link {
  text-decoration-color: var(--gold);
}


/* Simplified protected guest/admin area */
.portal-login-simple {
  display: grid;
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}

.portal-login-card h2 {
  margin-bottom: 22px;
}

.portal-login-card .button {
  justify-self: start;
}

.portal-attempts {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.portal-attempts.is-error {
  color: var(--clay);
}

.portal-admin-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-item-guest h3 {
  margin: 0;
}

.document-item-guest p,
.document-item-guest .document-meta {
  display: none;
}

@media (max-width: 1040px) {
  .portal-admin-panel {
    grid-template-columns: 1fr;
  }
}


.map-preview.is-blocked iframe,
.map-preview.is-blocked .map-open-link {
  display: none;
}

.map-consent-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(21, 67, 88, 0.12), rgba(219, 173, 65, 0.12)),
    color-mix(in srgb, var(--warm) 84%, var(--white) 16%);
  text-align: center;
}

.map-consent-placeholder[hidden] {
  display: none !important;
}

.map-consent-placeholder > div {
  max-width: 440px;
}

.map-consent-placeholder h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
}

.map-consent-placeholder p:not(.eyebrow) {
  color: var(--muted);
}

.map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
}

.map-consent-placeholder .button {
  margin-top: 0;
}

.map-consent-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.map-consent-link span:first-child {
  border-bottom: 2px solid var(--gold);
}

.map-external-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--sea-soft);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.map-consent-link:hover .map-external-icon,
.map-consent-link:focus-visible .map-external-icon {
  background: var(--ink);
  color: var(--white);
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .cookie-dialog.cookie-consent {
    place-items: end center;
    padding: 10px;
  }

  .cookie-consent__panel {
    max-height: 92vh;
    border-radius: 16px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-required,
  .cookie-switch {
    justify-self: start;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

/* Redesigned protected guest/admin portal */
.guest-area .portal-login {
  display: grid;
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
  padding: clamp(58px, 8vw, 104px) 48px;
}

.guest-area .portal-auth-panel {
  padding-top: clamp(58px, 8vw, 104px);
}

.guest-area .portal-login-card {
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(220, 239, 240, 0.62)),
    var(--white);
}

.guest-area .portal-login-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.guest-area .portal-login-card .button {
  width: fit-content;
  min-width: 172px;
}

.portal-dashboard {
  display: grid;
  gap: 22px;
  padding: clamp(42px, 6vw, 72px) 48px;
}

.portal-dashboard[hidden],
.portal-login[hidden] {
  display: none !important;
}

.portal-dashboard-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.portal-dashboard-head h2 {
  margin-bottom: 0;
}

.portal-notice {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(52, 127, 145, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 240, 0.88), rgba(255, 253, 247, 0.96)),
    var(--white);
  color: var(--ink);
}

.portal-notice strong {
  font-size: 1.02rem;
}

.portal-notice span {
  color: var(--muted);
}

.portal-admin-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portal-admin-tools .content-block {
  display: grid;
  align-content: start;
  gap: 16px;
}

.portal-password-card p {
  color: var(--muted);
}

.portal-password-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.portal-admin-message {
  min-height: auto;
  margin: 0;
}

.portal-document-list--guest .document-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.portal-document-list--guest .document-item p {
  display: none;
}

.portal-document-list--guest .document-item h3 {
  margin: 0;
}

@media (max-width: 1040px) {
  .guest-area .portal-login,
  .portal-dashboard {
    padding-inline: 28px;
  }

  .portal-admin-tools,
  .portal-notice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .guest-area .portal-login,
  .portal-dashboard {
    padding-inline: 18px;
  }

  .guest-area .portal-login-card .button,
  .portal-document-list--guest .document-actions,
  .portal-document-list--guest .document-actions .button {
    width: 100%;
  }

  .portal-document-list--guest .document-item {
    grid-template-columns: 1fr;
  }
}

/* Protected portal admin polish and responsive guardrails */
.guest-area,
.guest-area * {
  min-width: 0;
}

.guest-area .portal-dashboard {
  overflow: visible;
}

.guest-area .portal-dashboard > .portal-dashboard-head h2 {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 0.98;
}

.guest-area .portal-admin-dashboard {
  gap: clamp(18px, 2.4vw, 28px);
}

.guest-area .portal-admin-tools {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}

.guest-area .portal-admin-tools .content-block {
  position: relative;
  gap: clamp(14px, 1.8vw, 20px);
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(244, 234, 215, 0.54)),
    var(--white);
}

.guest-area .portal-admin-tools .content-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), rgba(52, 127, 145, 0.38));
}

.guest-area .portal-admin-tools .content-block h2 {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.guest-area .portal-password-card p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.guest-area .portal-password-card strong {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(20, 61, 86, 0.12);
  border-radius: 999px;
  background: rgba(220, 239, 240, 0.7);
  color: var(--ink);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.guest-area .portal-admin-tools .portal-inline-form {
  gap: 13px;
}

.guest-area .portal-admin-tools label {
  gap: 8px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.guest-area .portal-admin-tools input {
  min-height: 48px;
}

.guest-area .portal-admin-tools .button {
  width: 100%;
  margin-top: 4px;
  white-space: normal;
  text-align: center;
}

.guest-area .portal-upload-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(20px, 3vw, 34px);
}

.guest-area .portal-upload-card h2 {
  max-width: 360px;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
}

.guest-area .portal-upload-card .portal-inline-form {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  align-items: end;
}

.guest-area .portal-upload-card .portal-inline-form label {
  margin: 0;
}

.guest-area .portal-upload-card input[type="file"] {
  padding: 10px;
  min-height: 52px;
  font-size: 0.92rem;
}

.guest-area .portal-upload-card input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--sea-soft);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.guest-area .portal-admin-message:empty {
  display: none;
}

.guest-area .portal-admin-message:not(:empty) {
  display: block;
  padding: 13px 16px;
  border: 1px solid rgba(52, 127, 145, 0.22);
  border-radius: var(--radius);
  background: rgba(220, 239, 240, 0.62);
}

.guest-area .document-library,
.guest-area .document-list,
.guest-area .document-item,
.guest-area .document-empty,
.guest-area .document-item > div {
  min-width: 0;
}

.guest-area .document-item h3 {
  overflow-wrap: anywhere;
}

.guest-area .document-actions .button {
  min-width: 150px;
  white-space: normal;
}

@media (max-width: 1180px) {
  .guest-area .portal-admin-tools {
    grid-template-columns: 1fr;
  }

  .guest-area .portal-upload-card {
    grid-template-columns: 1fr;
  }

  .guest-area .portal-upload-card h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .subpage .page-main.guest-area {
    width: min(100% - 20px, 1180px);
  }

  .guest-area .portal-dashboard > .portal-dashboard-head {
    flex-direction: column;
  }

  .guest-area .portal-dashboard > .portal-dashboard-head .button {
    width: 100%;
  }

  .guest-area .portal-dashboard > .portal-dashboard-head h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .guest-area .portal-upload-card .portal-inline-form {
    grid-template-columns: 1fr;
  }

  .guest-area .document-library {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .subpage .page-main.guest-area {
    width: min(100% - 12px, 1180px);
  }

  .guest-area .portal-admin-tools .content-block,
  .guest-area .document-library {
    padding: 18px;
  }

  .guest-area .portal-admin-tools .content-block h2 {
    font-size: 1.3rem;
  }

  .guest-area .portal-password-card strong {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .guest-area .document-actions .button {
    min-width: 0;
  }
}

.guest-area .portal-file-picker {
  position: relative;
  cursor: pointer;
}

.guest-area .portal-field-label {
  color: var(--ink);
  font-weight: 900;
}

.guest-area .portal-file-picker input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.guest-area .portal-file-control {
  min-height: 52px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.guest-area .portal-file-button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--sea-soft);
  color: var(--ink);
  font-weight: 900;
}

.guest-area .portal-file-name {
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-area .portal-file-picker:focus-within .portal-file-control {
  border-color: rgba(52, 127, 145, 0.6);
  box-shadow: 0 0 0 3px rgba(52, 127, 145, 0.14);
}

@media (max-width: 560px) {
  .guest-area .portal-file-control {
    align-items: stretch;
    flex-direction: column;
  }

  .guest-area .portal-file-button,
  .guest-area .portal-file-name {
    text-align: center;
  }

  .guest-area .portal-file-name {
    white-space: normal;
  }
}

/* Upload repair and guest login reset controls */
.guest-area .portal-login-reset-card {
  grid-column: 1 / -1;
}

.guest-area .portal-login-reset-card p {
  margin: 0;
  color: var(--muted);
}

.guest-area .portal-login-reset-card .button {
  width: fit-content;
  min-width: min(100%, 280px);
}

.guest-area .portal-upload-card {
  align-items: start;
}

.guest-area .portal-upload-card .portal-inline-form {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.guest-area .portal-upload-card .portal-inline-form > .button {
  justify-self: start;
  width: min(100%, 340px);
}

.guest-area .portal-file-picker {
  display: grid;
  gap: 8px;
}

.guest-area .portal-file-control {
  width: 100%;
  border: 1px solid var(--line);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.guest-area .portal-file-control:hover,
.guest-area .portal-file-control:focus-visible {
  border-color: rgba(52, 127, 145, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 127, 145, 0.12);
}

.guest-area .portal-file-name {
  flex: 1 1 auto;
}

@media (max-width: 560px) {
  .guest-area .portal-login-reset-card .button,
  .guest-area .portal-upload-card .portal-inline-form > .button {
    width: 100%;
  }
}


.compact-heading .external-link-notice {
  max-width: 820px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 61, 86, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(220, 239, 240, 0.42);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.compact-heading .external-link-notice strong {
  color: var(--ink);
}


/* Inline confirmation for guest login reset */
.guest-area .portal-reset-confirm {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(180, 108, 72, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(215, 171, 69, 0.14)),
    var(--white);
}

.guest-area .portal-reset-confirm[hidden] {
  display: none !important;
}

.guest-area .portal-reset-confirm p {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--muted);
}

.guest-area .portal-reset-confirm strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.guest-area .portal-reset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-area .portal-reset-actions .button {
  min-width: min(100%, 190px);
}

@media (max-width: 560px) {
  .guest-area .portal-reset-actions .button {
    width: 100%;
  }
}

/* Document upload reliability and actions */
.guest-area .portal-admin-message,
.guest-area [data-admin-message] {
  min-height: 1.4em;
}

.guest-area .document-actions {
  align-items: center;
}

.guest-area .document-actions .button {
  min-width: 128px;
}

.guest-area .document-item h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .guest-area .document-actions {
    justify-content: stretch;
  }

  .guest-area .document-actions .button {
    flex: 1 1 140px;
  }
}

/* Mobile review/map section polish */
@media (max-width: 1040px) {
  #bewertungen-home.reviews-map-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  #bewertungen-home.reviews-map-band {
    width: min(100% - 20px, 1180px);
    padding: 24px 0 56px;
    gap: 16px;
  }

  #bewertungen-home .reviews-map-copy {
    padding: 24px 20px;
    border-radius: 18px;
  }

  #bewertungen-home .reviews-map-copy h2 {
    font-size: clamp(2rem, 12vw, 2.85rem);
    line-height: 1.02;
  }

  #bewertungen-home .reviews-map-copy p:not(.eyebrow) {
    margin-bottom: 20px;
  }

  #bewertungen-home .map-review-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  #bewertungen-home .map-preview {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  #bewertungen-home .map-preview iframe {
    min-height: 0;
    height: 100%;
  }

  #bewertungen-home .map-preview .map-open-link {
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    background: linear-gradient(0deg, rgba(7, 24, 29, 0.46), transparent 56%);
  }

  #bewertungen-home .map-preview .map-open-link span {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  #bewertungen-home .map-consent-placeholder {
    padding: 18px;
    text-align: left;
  }

  #bewertungen-home .map-consent-placeholder > div {
    max-width: none;
  }

  #bewertungen-home .map-consent-placeholder h3 {
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1.02;
  }

  #bewertungen-home .map-consent-actions {
    align-items: stretch;
    gap: 10px;
  }

  #bewertungen-home .map-consent-placeholder .button,
  #bewertungen-home .map-consent-link {
    width: 100%;
    text-align: center;
  }

  #bewertungen-home .map-consent-link {
    justify-content: center;
  }
}

/* Scoped admin action messages */
.guest-area .portal-card-message {
  min-height: 0;
  margin: 0;
  padding: 0;
}

.guest-area .portal-card-message:empty {
  display: none;
}

.guest-area .portal-card-message:not(:empty) {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(52, 127, 145, 0.22);
  border-radius: 14px;
  background: rgba(220, 239, 240, 0.46);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.guest-area .portal-card-message.is-error:not(:empty) {
  border-color: rgba(159, 77, 58, 0.28);
  background: rgba(159, 77, 58, 0.09);
  color: var(--clay);
}

.guest-area .document-action-message:not(:empty) {
  margin: 16px 0 0;
}



/* Password visibility controls */
.guest-area .portal-password-field {
  position: relative;
  display: block;
}

.guest-area .portal-password-field input {
  padding-right: 112px;
}

.guest-area .portal-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: calc(100% - 14px);
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: rgba(220, 239, 240, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.guest-area .portal-password-toggle:hover,
.guest-area .portal-password-toggle:focus-visible {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(52, 127, 145, 0.14);
  outline: 0;
}

@media (max-width: 560px) {
  .guest-area .portal-password-field input {
    padding-right: 102px;
  }

  .guest-area .portal-password-toggle {
    min-width: 78px;
    padding: 0 10px;
    font-size: 0.76rem;
  }
}


/* Ensure blocked-map external link remains visible */
.map-consent-actions {
  flex-direction: column;
}

.map-consent-external {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 320px);
  margin-top: 0;
  padding-right: 8px;
  text-decoration: none;
}

.map-consent-external .map-external-icon {
  width: 38px;
  height: 38px;
  background: var(--sea-soft);
}

.map-consent-external:hover .map-external-icon,
.map-consent-external:focus-visible .map-external-icon {
  background: var(--ink);
  color: var(--white);
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  #bewertungen-home .map-consent-external {
    min-width: 0;
    width: 100%;
  }
}


/* Google Maps review CTA icon */
.map-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-right: 8px;
}

.map-review-link .map-review-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(20, 61, 86, 0.1);
  box-shadow: 0 8px 18px rgba(9, 44, 64, 0.08);
}

.map-review-link:hover .map-review-icon,
.map-review-link:focus-visible .map-review-icon {
  background: var(--ink);
  color: var(--white);
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  #bewertungen-home .map-review-link {
    padding-right: 8px;
  }
}


/* reCAPTCHA in the protected area */
.guest-area .portal-recaptcha {
  display: grid;
  gap: 10px;
  max-width: 100%;
  padding: 14px;
  border: 1px solid rgba(52, 127, 145, 0.2);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.76);
  overflow-x: auto;
}

.guest-area .portal-recaptcha[hidden] {
  display: none;
}

.guest-area .portal-recaptcha p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 420px) {
  .guest-area .portal-recaptcha {
    margin-right: -8px;
    padding: 10px;
  }
}

/* Mobile first-view polish */
@media (max-width: 640px) {
  .cookie-dialog.cookie-consent {
    align-items: center;
    padding: 8px;
  }

  .cookie-consent__panel {
    width: min(100%, 380px);
    max-height: calc(100svh - 16px);
    padding: 18px;
    display: grid;
    gap: 12px;
    overflow-y: auto;
  }

  .cookie-consent__head .eyebrow {
    margin-bottom: 6px;
  }

  .cookie-consent__head h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .cookie-consent__head p,
  .cookie-option p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .cookie-options {
    gap: 8px;
  }

  .cookie-option {
    padding: 12px;
  }

  .cookie-consent__meta {
    margin-top: -2px;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-actions .button {
    min-height: 42px;
    padding: 10px 14px;
  }
}

@media (max-width: 560px) {
  .subpage .site-header.compact {
    width: calc(100% - 24px);
  }

  .subpage .page-main,
  .subpage .legal-main {
    width: min(100% - 24px, 1180px);
    margin-top: 12px;
  }

  .page-hero,
  .booking-page {
    height: min(640px, calc(100svh - 104px));
    min-height: 520px;
    padding: 108px 18px 32px;
    justify-content: flex-end;
  }

  .page-hero .eyebrow,
  .booking-page .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .page-hero h1,
  .booking-page h1,
  .legal-main .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13vw, 3.25rem);
    line-height: 0.94;
  }

  .page-hero p:last-child,
  .booking-page p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .booking-page h1 {
    font-size: clamp(2.25rem, 11vw, 2.85rem);
  }

  .booking-page p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .booking-page .booking-link-hero {
    margin-top: 18px;
    min-height: 58px;
  }

  .subpage .page-hero + .section-intro-heading,
  .subpage .booking-page + .section-intro-heading,
  .booking-combined .section-intro-heading,
  .legal-combined .section-intro-heading {
    padding-top: 18px;
  }

  .subpage .page-hero + .section-intro-heading h2,
  .subpage .booking-page + .section-intro-heading h2 {
    margin-top: 56px;
  }

  .guest-area .page-hero + .portal-login {
    padding-top: 116px;
  }
}

@media (max-width: 390px) {
  .page-hero,
  .booking-page {
    height: min(640px, calc(100svh - 104px));
    min-height: 520px;
    padding-top: 104px;
  }

  .page-hero h1,
  .booking-page h1,
  .legal-main .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 2.95rem);
  }

  .page-hero p:last-child,
  .booking-page p {
    font-size: 0.9rem;
  }
}

/* Final mobile first-view guard */
@media (max-width: 560px) {
  .subpage .page-hero + .section-intro-heading h2,
  .subpage .booking-page + .section-intro-heading h2 {
    margin-top: 124px;
  }
}

/* Photo lightbox titles and mobile swipe */
.photo-lightbox__inner {
  overscroll-behavior: contain;
}

.photo-lightbox__stage {
  position: relative;
  height: min(82vh, 840px);
  overflow: hidden;
  background: #0b2230;
  touch-action: pan-y;
}

.photo-lightbox__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
}

.photo-lightbox__image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}

.photo-lightbox.is-dragging-photo .photo-lightbox__track {
  transition: none;
}

.photo-lightbox.is-animating-photo .photo-lightbox__track {
  transition: transform 0.3s cubic-bezier(0.22, 0.78, 0.25, 1);
}

.photo-lightbox__caption {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 12px 20px 16px;
  background: rgba(7, 24, 29, 0.96);
  text-align: center;
}

.photo-lightbox__title {
  color: #fffdf7;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
}

.photo-lightbox__counter {
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 0.86rem;
  line-height: 1.2;
}

@media (max-width: 560px) {
  .photo-lightbox__stage {
    height: 76vh;
  }

  .photo-lightbox__caption {
    min-height: 62px;
    padding: 10px 14px 12px;
  }

  .photo-lightbox__title {
    font-size: 1.12rem;
  }

  .photo-lightbox__counter {
    font-size: 0.78rem;
  }
}
