:root {
  color-scheme: light;
  --background: oklch(.985 .006 85);
  --foreground: oklch(.26 .03 260);
  --card: oklch(.995 .004 85);
  --card-foreground: oklch(.26 .03 260);
  --primary: oklch(.38 .07 262);
  --primary-foreground: oklch(.985 .006 85);
  --secondary: oklch(.93 .012 85);
  --secondary-foreground: oklch(.38 .07 262);
  --muted-foreground: oklch(.48 .02 260);
  --accent: oklch(.88 .02 80);
  --border: oklch(.9 .012 82);
  --ring: oklch(.38 .07 262);
  --radius: .75rem;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Fraunces, Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body:has(.gallery-modal:not([hidden])) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}
.container,
.narrow {
  width: 100%;
  margin-inline: auto;
}
.container {
  max-width: 72rem;
  padding-inline: 1rem;
}
.narrow {
  max-width: 48rem;
  padding-inline: 1rem;
}
.center {
  text-align: center;
}
.max-2 {
  max-width: 42rem;
}
.bg-background {
  background: var(--background);
}
.bg-secondary {
  background: var(--secondary);
}
.section {
  padding-block: 5rem;
}
.section-compact {
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .container,
  .narrow {
    padding-inline: 1.5rem;
  }
  .section {
    padding-block: 7rem;
  }
  .section-compact {
    padding-block: 5rem;
  }
}
@media (max-width: 639px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .container,
  .narrow {
    padding-inline: 1rem;
  }
  .section {
    padding-block: 3.5rem;
  }
  .section-compact {
    padding-block: 3rem;
  }
  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.15;
  }
  h3 {
    font-size: 1.3rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.kicker {
  margin: 0;
  color: var(--muted-foreground);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--primary);
  font-family: var(--font-heading);
}
h2 {
  margin-top: 1rem;
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 600;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}
.muted,
.placeholder {
  color: var(--muted-foreground);
}
.mono,
.placeholder.small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.room-copy p.placeholder,
.surroundings-grid p.placeholder {
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0;
}
.text-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .7s ease-out, transform .7s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
section[id] {
  scroll-margin-top: 5.5rem;
}
@media (min-width: 1024px) {
  section#bewertungen {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
  }
}


@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: normal;
  src: url('/font/Pacifico-Regular.ttf') format('truetype');
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  min-height: 2.25rem;
  padding: .5rem .75rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + .25rem);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .15s;
}
.button-lg {
  min-height: 2.75rem;
  padding-inline: 1.5rem;
}
.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.button-primary:hover {
  background: color-mix(in oklch, var(--primary) 80%, white);
}
.button-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.button-secondary:hover {
  background: color-mix(in oklch, var(--secondary) 80%, white);
}
.button-outline {
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
}
.button-outline:hover {
  background: var(--secondary);
}
.button-outline-light {
  border-color: color-mix(in oklch, var(--primary-foreground) 40%, transparent);
  background: transparent;
  color: var(--primary-foreground);
}
.button-outline-light:hover {
  background: color-mix(in oklch, var(--primary-foreground) 10%, transparent);
  color: var(--primary-foreground);
}
.button:active {
  transform: translateY(1px);
}
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--background) 90%, transparent);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  height: 4rem;
  padding-inline: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
}
.header-brand {
  color: var(--primary-foreground);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.scrolled .header-brand {
  color: var(--primary);
}
.header-brand span {
  transition: color .3s;
}
.scrolled .desktop-booking {
  background: oklch(.38 .07 262);
  color: var(--primary-foreground);
  border-color: oklch(.38 .07 262);
}
.scrolled .desktop-booking:hover {
  background: color-mix(in oklch, oklch(.38 .07 262) 86%, white);
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: .5rem;
}
.desktop-nav a {
  border-radius: .375rem;
  padding: .5rem .75rem;
  color: color-mix(in oklch, var(--primary-foreground) 70%, transparent);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary-foreground);
}
.scrolled .desktop-nav a {
  color: var(--muted-foreground);
}
.scrolled .desktop-nav a:hover,
.scrolled .desktop-nav a.active {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.desktop-booking {
  display: none;
}
.menu-button {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: .375rem;
  background: transparent;
  color: var(--primary-foreground);
}
.scrolled .menu-button {
  color: var(--primary);
}
.menu-button:hover {
  background: color-mix(in oklch, currentColor 10%, transparent);
}
.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding-block: .75rem;
}
.mobile-nav > a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: .75rem;
  border-radius: .375rem;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}
.mobile-nav > a:not(.button):hover {
  background: var(--secondary);
}
.mobile-nav .button {
  margin-top: .75rem;
}
.site-header .header-inner {
  max-width: none;
  margin-inline: 0;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .site-header .header-inner {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 768px) {
  .site-header .header-inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .site-header .header-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1180px) {
  .desktop-nav {
    display: flex;
  }
  .desktop-booking {
    display: inline-flex;
  }
  .menu-button {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .site-header .header-inner {
    padding-inline: clamp(9rem, 18.25vw, 22.5rem);
  }
}
.hero {
  position: relative;
  isolation: isolate;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}
.hero-bg .placeholder {
  color: color-mix(in oklch, var(--primary-foreground) 60%, transparent);
  font-size: .75rem;
  letter-spacing: .04em;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg,
      color-mix(in oklch, var(--primary) 60%, transparent) 0%,
      color-mix(in oklch, var(--primary) 48%, transparent) 52%,
      color-mix(in oklch, var(--primary) 30%, transparent) 100%),
    linear-gradient(180deg,
      color-mix(in oklch, var(--primary) 68%, transparent) 0%,
      color-mix(in oklch, var(--primary) 44%, transparent) 52%,
      color-mix(in oklch, var(--primary) 0%, transparent) 100%);
}
.hero-content {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-copy {
  max-width: 42rem;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary-foreground) 20%, transparent);
  padding: .25rem .75rem;
  color: var(--primary-foreground);
  font-size: .875rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--primary-foreground) 20%, transparent);
}
.eyebrow-pill .icon {
  font-size: 1rem;
}
.hero h1 {
  max-width: 16ch;
  margin-top: 2.5rem;
  color: #fff;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 3px 24px color-mix(in oklch, var(--primary) 60%, transparent);
}
.hero-name-static,
.hero-name-line {
  display: block;
}
.hero-name-line {
  min-height: 1.05em;
}
.hero-name-cycle {
  color: oklch(97.5% 0.149 108.89);
  font-family: "Pacifico", cursive;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}
.hero-name-cursor {
  display: inline-block;
  width: .06em;
  height: .85em;
  margin-left: .05em;
  background: oklch(97.5% 0.149 108.89);
  animation: hero-cursor-blink 1s step-end infinite;
  vertical-align: baseline;
  transform: translateY(.1em);
}
@keyframes hero-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-subtitle {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--primary-foreground) 70%, transparent);
  font-size: .875rem;
}
.hero-lead {
  max-width: 36rem;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.7;
  text-shadow: 0 2px 14px color-mix(in oklch, var(--primary) 55%, transparent);
}
.hero .button {
  border-radius: .55rem;
  letter-spacing: .01em;
  text-shadow: none;
}
.hero .button span:last-child {
  font-size: .875rem;
}
.button-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}
.center-actions {
  justify-content: center;
}
@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
  }
  .hero h1 {
    font-size: 3.75rem;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 5rem;
  }
}
@media (max-width: 639px) {
  .hero-bg img {
    object-position: 65% center;
  }
  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  .hero .eyebrow-pill {
    display: inline-flex;
    justify-content: center;
  }
  .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: .98;
  }
  .hero-name-line {
    min-height: 1.02em;
  }
  .hero-lead {
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.65;
  }
  .button {
    min-height: 2.75rem;
  }
  .button-row {
    width: 100%;
  }
  .button-row .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-name-cursor {
    animation: none;
  }
}
@media (max-width: 639px) and (orientation: landscape) {
  .site-header {
    position: absolute;
  }
  .hero-content {
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}
.narrow .reveal > p.lead {
  margin-top: 1.5rem;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px color-mix(in oklch, var(--primary) 5%, transparent);
  outline: 1px solid var(--border);
}
.icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 10%, transparent);
  color: var(--primary);
}
.icon-circle.inverse {
  background: color-mix(in oklch, var(--primary-foreground) 10%, transparent);
  color: var(--primary-foreground);
}
.highlight-card > span:last-child {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 1.4rem;
  }
}
@media (min-width: 1180px) {
  .highlight-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3.5rem;
}
.room {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "copy";
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}
.room-image,
.room-copy {
  min-width: 0;
}
.room-image {
  grid-area: image;
}
.room-copy {
  grid-area: copy;
}
.room-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}
.room-copy p {
  max-width: 60ch;
  margin-top: .75rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.chips li {
  border-radius: 999px;
  background: var(--secondary);
  padding: .25rem .75rem;
  color: var(--secondary-foreground);
  font-size: .875rem;
  font-weight: 600;
}
@media (min-width: 1180px) {
  .room {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .room {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "copy image";
    gap: 2rem;
  }
  .rooms-list > .reveal:nth-child(even) .room {
    grid-template-areas: "image copy";
  }
}
@media (max-width: 639px) {
  .rooms-list {
    gap: 3rem;
    margin-top: 2.5rem;
  }
  .room {
    gap: 1rem;
  }
  .room-photo {
    aspect-ratio: 4 / 3;
  }
  .room-copy p.placeholder,
  .surroundings-grid p.placeholder {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media (min-width: 640px) and (orientation: landscape) and (max-width: 1179px) {
  .room {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "copy image";
    gap: 2rem;
  }
  .rooms-list > .reveal:nth-child(even) .room {
    grid-template-areas: "image copy";
  }
  .room-image {
    min-width: 0;
  }
  .room-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-card {
  height: 100%;
  border-radius: 1rem;
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 2px 12px color-mix(in oklch, var(--primary) 5%, transparent);
  outline: 1px solid var(--border);
}
.amenity-card h3 {
  font-family: var(--font-body);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.amenity-card ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.amenity-card li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  line-height: 1.4;
}
.amenity-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: .5rem;
  background: color-mix(in oklch, var(--primary) 10%, transparent);
  color: var(--primary);
}
@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1180px) {
  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(6.5rem, 10vw, 9rem);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
}
.gallery-item {
  min-width: 0;
}
.gallery-item-featured {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-item-garden,
.gallery-item-living {
  grid-column: span 5;
}
.gallery-item-kitchen,
.gallery-item-bedroom,
.gallery-item-bath,
.gallery-item-kids,
.gallery-item-gaeste,
.gallery-item-wirtschaft {
  grid-column: span 3;
}
.gallery-item-kitchen {
  grid-row: span 2;
}
.gallery-tile {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 1.25rem;
  background: var(--secondary);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px color-mix(in oklch, var(--primary) 9%, transparent);
  isolation: isolate;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, color-mix(in oklch, var(--primary) 78%, transparent) 100%);
  opacity: .82;
  transition: opacity .3s ease;
}
.gallery-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px color-mix(in oklch, var(--primary) 15%, transparent);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}
.gallery-tile:hover img {
  transform: scale(1.055);
}
.gallery-label {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: .9rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 450;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(.75rem, 2vw, 1.5rem);
  background: oklch(.38 .07 262 / 65%);
  backdrop-filter: blur(3px) saturate(118%);
  overscroll-behavior: contain;
}
.gallery-modal[hidden] {
  display: none;
}
.gallery-control {
  position: absolute;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, #2d4268 70%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255 / 65%);
  color: var(--primary);
  backdrop-filter: blur(1px);
  transition: transform .2s, background-color .2s;
  touch-action: manipulation;
}
.gallery-control:hover {
  background: rgba(255, 255, 255, .94);
}
.gallery-control:active {
  transform: scale(.96);
}
.gallery-control .icon {
  font-size: 1.75rem;
}
.gallery-control.close {
  top: max(.75rem, env(safe-area-inset-top));
  right: max(.75rem, env(safe-area-inset-right));
}
.gallery-control.left {
  left: max(.5rem, env(safe-area-inset-left));
}
.gallery-control.right {
  right: max(.5rem, env(safe-area-inset-right));
}
.gallery-figure {
  width: min(94vw, 86rem);
  height: min(92vh, 58rem);
  max-width: none;
  max-height: none;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin: 0;
  overflow: visible;
}
.gallery-large {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  overflow: visible;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-large img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: .6rem;
  transform-origin: center center;
  transition: transform .2s ease;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}
.gallery-large.is-zoomed {
  cursor: grab;
}
.gallery-large.is-dragging {
  cursor: grabbing;
}
.gallery-large.is-interacting img {
  transition: none;
}
@media (hover: none), (pointer: coarse) {
  .gallery-large,
  .gallery-large.is-zoomed,
  .gallery-large.is-dragging {
    cursor: default;
  }
}
.gallery-figure figcaption {
  flex: 0 0 auto;
  max-width: min(92vw, 58rem);
  padding: .55rem 1rem;
  border-radius: .65rem;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.1vw, 1.15rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .07em;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(7rem, 10vw, 9rem);
  }
  .gallery-control.left {
    left: 1.5rem;
  }
  .gallery-control.right {
    right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(7rem, 10vw, 9rem);
  }
}
@media (min-width: 1180px) {
  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(7.5rem, 9vw, 9rem);
  }
}
@media (max-width: 639px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 10rem;
    gap: .7rem;
  }
  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item-garden,
  .gallery-item-living,
  .gallery-item-kitchen,
  .gallery-item-bedroom,
  .gallery-item-bath,
  .gallery-item-kids,
  .gallery-item-wirtschaft,
  .gallery-item-gaeste {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item-garden,
  .gallery-item-gaeste {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-label {
    left: .8rem;
    bottom: .7rem;
    font-size: .68rem;
  }
  .gallery-modal {
    padding: .75rem;
  }
  .gallery-figure {
    width: min(96vw, 86rem);
    height: calc(100svh - 1.5rem);
    gap: .65rem;
  }
  .gallery-large {
    height: calc(100% - 3.5rem);
  }
  .gallery-large img {
    max-width: 94vw;
    max-height: calc(100svh - 7rem);
  }
  .gallery-control {
    width: 2.5rem;
    height: 2.5rem;
  }
  .gallery-control.left {
    left: .45rem;
  }
  .gallery-control.right {
    right: .45rem;
  }
  .gallery-control .icon {
    font-size: 1.3rem;
  }
  .gallery-figure figcaption {
    max-width: 86vw;
    padding: .5rem .75rem;
    font-size: .95rem;
  }
  .gallery-figure {
    width: 94vw;
    height: 90vh;
    gap: .6rem;
  }
  .gallery-large img {
    max-width: 94vw;
    max-height: calc(90vh - 5rem);
  }
  .gallery-figure figcaption {
    margin-top: 0;
    padding: .45rem .8rem;
    font-size: .85rem;
  }
}
@media (max-width: 380px) {
  .gallery-control {
    width: 2.75rem;
    height: 2.75rem;
  }
  .gallery-large img {
    max-width: 92vw;
  }
}
@media (max-width: 639px) and (orientation: landscape) {
  .gallery-figure {
    height: calc(100svh - 1rem);
  }
  .gallery-large {
    height: calc(100% - 2.75rem);
  }
  .gallery-large img {
    max-height: calc(100svh - 4.5rem);
    max-width: 90vw;
  }
  .gallery-figure figcaption {
    max-width: 65vw;
    padding: .35rem .7rem;
    font-size: .9rem;
  }
  .gallery-control {
    width: 2.75rem;
    height: 2.75rem;
  }
}
@media (max-width: 1199px) {
  .gallery-figure {
    width: fit-content;
    max-width: 96vw;
    height: auto;
    max-height: 94svh;
    gap: .6rem;
  }
  .gallery-large {
    width: fit-content;
    height: fit-content;
    max-width: 96vw;
    max-height: calc(94svh - 4rem);
    flex: 0 0 auto;
  }
  .gallery-large img {
    display: block;
    width: auto;
    height: auto;
    max-width: 96vw;
    max-height: calc(94svh - 4rem);
    object-fit: contain;
  }
  .gallery-figure figcaption {
    flex: 0 0 auto;
    margin-top: 0;
  }
}
@media (max-width: 1199px) and (orientation: landscape) {
  .gallery-control .icon {
    font-size: 1.3rem;
  }
  .gallery-control {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.reviews-section {
  background: #ebe7df;
  overflow: hidden;
}
.reviews-marquee {
  position: relative;
  margin-top: 3rem;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 1.75rem 2rem;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(4rem, 10vw, 10rem);
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgb(235 231 223), rgba(255, 255, 255, 0));
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgb(235 231 223), rgba(255, 255, 255, 0));
}
.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviews-marquee 58s linear infinite;
}
.review-card {
  position: relative;
  flex: 0 0 22rem;
  width: 22rem;
  margin-right: 4.5rem;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid color-mix(in oklch, var(--primary) 9%, transparent);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 20px color-mix(in oklch, var(--primary) 2%, transparent);
  transform: rotate(var(--rotation));
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: color-mix(in oklch, var(--primary) 7%, transparent);
}
.review-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: oklch(.38 .07 262);
}
.review-stars {
  width: 7.2rem;
  height: auto;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}
.review-score {
  color: oklch(.38 .07 262);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}
.review-card h3 {
  position: relative;
  margin-top: 1.35rem;
  color: oklch(.38 .07 262);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.2;
}
.review-card p {
  position: relative;
  margin-top: 1rem;
  color: #111;
  font-size: .98rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@keyframes reviews-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 639px) {
  .review-card {
    flex-basis: 19rem;
    width: 19rem;
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .reviews-track {
    animation-duration: 80s;
  }
  .reviews-marquee::before,
  .reviews-marquee::after {
    background: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
.beach-box {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius);
  background: var(--secondary);
  padding: 1rem;
  margin-top: 1.5rem;
}
.beach-box > span:last-child {
  font-size: .875rem;
  font-weight: 600;
}
.region-link {
  margin-top: 1rem;
}
.region-link a {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.region-link .icon {
  font-size: .875rem;
}
.location-box {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 1rem;
  background: var(--primary);
  padding: 2rem;
  color: var(--primary-foreground);
}
.location-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.location-info h3 {
  color: var(--primary-foreground);
  font-size: 1.25rem;
}
.location-info p {
  margin-top: .25rem;
  color: color-mix(in oklch, var(--primary-foreground) 80%, transparent);
  font-size: .875rem;
}
.beach-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}
@media (min-width: 1180px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-box {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 640px) and (orientation: landscape) and (max-width: 1179px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .room{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-areas:"copy image";
    gap:2rem;
  }
  .rooms-list > .reveal:nth-child(even) .room{
    grid-template-areas:"image copy";
  }
  .two-col{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 3rem;
}
.footer-brand {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
}
.footer-about {
  max-width: 24rem;
}
.footer-about p {
  margin-top: .75rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-nav h2 {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-nav a {
  color: var(--muted-foreground);
  font-size: .875rem;
  transition: color .2s;
}
.footer-nav a:hover {
  color: var(--primary);
}
.placeholder.small {
  color: var(--muted-foreground);
  font-size: .75rem;
}
.footer-copy {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}
.footer-copy p {
  color: var(--muted-foreground);
  font-size: .75rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.legal-header {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.legal-header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-header .brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  font-weight: 600;
}
.back-link:hover {
  color: var(--primary);
}
.legal-main {
  max-width: 48rem;
  padding-block: 4rem;
}
.legal-main h1 {
  font-size: 1.8rem;
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  font-size: .875rem;
  line-height: 1.7;
}
.legal-content section {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.legal-content h2 {
  font-size: 1.25rem;
}
.field-label {
  display: block;
  color: var(--muted-foreground);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.field-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .875rem;
}
.legal-note {
  border-radius: .5rem;
  background: var(--secondary);
  padding: 1rem;
  color: var(--muted-foreground);
  font-size: .75rem;
}
