:root {
  --ink: #17201c;
  --muted: #66716b;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #e7e0d3;
  --gold: #c89a43;
  --sage: #8ea58f;
  --clay: #bd755f;
  --mist: #edf2ee;
  --shadow: 0 24px 70px rgba(32, 38, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.cookie-modal-open {
  overflow: hidden;
  touch-action: none;
}

main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero {
  order: 1;
}

.stays {
  order: 2;
}

.discover {
  order: 3;
}

.trust {
  order: 4;
}

.intro {
  order: 5;
}

.contact {
  order: 6;
}

.stays,
.discover,
.trust,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  background: rgba(23, 32, 28, 0.08);
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, #f5d88a, var(--gold), #8ea58f);
  box-shadow: 0 0 22px rgba(200, 154, 67, 0.55);
  transition: width 0.08s linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.18rem clamp(0.75rem, 2.4vw, 1.5rem);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-elevated {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  box-shadow: 0 10px 34px rgba(25, 31, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  order: 1;
}

.brand-logo {
  display: block;
  width: clamp(58px, 6.2vw, 86px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
  animation: logoBreathe 4.6s ease-in-out infinite;
}

.site-header.is-elevated .brand-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 16px 28px rgba(200, 154, 67, 0.28));
}

.desktop-nav {
  display: flex;
  gap: 1.35rem;
  margin-inline: auto;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 800;
  order: 2;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0.46rem 0.78rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta::after,
.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.nav-cta:hover::after,
.button:hover::after {
  transform: translateX(130%);
}

.nav-cta,
.button.primary {
  color: #1b1f1b;
  background: linear-gradient(135deg, #f2cf86, var(--gold));
  box-shadow: 0 14px 34px rgba(200, 154, 67, 0.26);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.button.full {
  width: 100%;
}

.paypal-button {
  background: linear-gradient(135deg, #f6d687, #d6a345 48%, #2d7ff9);
}

.language-switcher > button,
.whatsapp-float {
  display: grid;
  place-items: center;
}

.language-switcher > button {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(200, 154, 67, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(32, 38, 35, 0.1);
  backdrop-filter: blur(16px);
}

.whatsapp-float svg {
  width: 1.55rem;
  height: 1.55rem;
}

.language-switcher {
  position: relative;
  z-index: 70;
  flex: 0 0 auto;
  order: 3;
}

.nav-cta {
  order: 4;
}

.language-switcher > button {
  padding: 0;
  font-size: 1.25rem;
  cursor: pointer;
}

.flag-icon {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.flag-de {
  background: linear-gradient(#111 0 33.33%, #d71f2a 33.33% 66.66%, #ffd84a 66.66%);
}

.flag-gb {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(147deg, transparent 42%, #fff 42% 48%, #c8102e 48% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
    #012169;
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50%);
}

.flag-cz {
  background:
    linear-gradient(32deg, #11457e 0 49%, transparent 50%),
    linear-gradient(148deg, #11457e 0 49%, transparent 50%),
    linear-gradient(#fff 0 50%, #d7141a 50%);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  display: grid;
  min-width: 150px;
  z-index: 80;
  border: 1px solid rgba(200, 154, 67, 0.35);
  border-radius: 8px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(32, 38, 35, 0.16);
  backdrop-filter: blur(16px);
}

.language-menu[hidden] {
  display: none !important;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 6px;
  padding: 0.55rem 0.65rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover {
  background: rgba(200, 154, 67, 0.12);
}

.button:hover,
.nav-cta:hover,
.icon-button:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86vh;
  overflow: visible;
  padding: 8rem clamp(1rem, 5vw, 5rem) 4rem;
  color: #fff;
}

.hero-gallery,
.hero-photo,
.hero-shade,
.motion-lines {
  position: absolute;
  inset: 0;
}

.hero-gallery {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 154, 67, 0.28), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(142, 165, 143, 0.32), transparent 24%),
    linear-gradient(135deg, #12201a, #2e3f35 52%, #92713d);
}

.hero-photo {
  width: 100%;
  height: 100%;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(11, 17, 14, 0.26), rgba(11, 17, 14, 0.04)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(200, 154, 67, 0.36), rgba(142, 165, 143, 0.42));
  background-position: center;
  background-size: cover;
  animation: heroPhotoFlow 60s ease-in-out infinite;
  transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.08);
}

.hero-photo.has-image {
  background-blend-mode: normal;
}

.hero-gallery.is-synced .hero-photo {
  opacity: 0;
  animation: none;
  transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.1);
  transition: opacity 1s ease, transform 1.6s ease;
}

.hero-gallery.is-synced .hero-photo.is-active {
  opacity: 1;
  transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.045);
}

.hero-photo.photo-two {
  animation-delay: 10s;
}

.hero-photo.photo-three {
  animation-delay: 20s;
}

.hero-photo.photo-four {
  animation-delay: 30s;
}

.hero-photo.photo-five {
  animation-delay: 40s;
}

.hero-photo.photo-six {
  animation-delay: 50s;
}

.motion-lines {
  opacity: 0.36;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 43%, transparent 44%),
    linear-gradient(115deg, transparent 0 70%, rgba(200, 154, 67, 0.2) 71%, transparent 72%);
  background-size: 220px 220px, 360px 360px;
  animation: driftLines 16s linear infinite;
  mix-blend-mode: screen;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 20, 18, 0.76), rgba(15, 20, 18, 0.2) 58%, rgba(15, 20, 18, 0.36)),
    linear-gradient(0deg, rgba(23, 32, 28, 0.55), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 770px;
  z-index: 2;
}

.hero-logo {
  width: min(310px, 58vw);
  height: auto;
  margin-bottom: 1.2rem;
  opacity: 0;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34));
  animation:
    heroLogoRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both,
    heroLogoFloat 5.5s ease-in-out 1.1s infinite;
}

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

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

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 6.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
}

.hero-copy,
.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-apartments {
  --hero-apartment-width: min(390px, 30vw);
  position: absolute;
  left: calc(100vw - var(--hero-apartment-width) - clamp(1rem, 5vw, 5rem) - clamp(1rem, 5vw, 5rem));
  top: 50%;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: var(--hero-apartment-width);
  min-height: 280px;
  margin-top: 0;
  transform: translateY(-12%);
}

.hero-apartments > div {
  position: relative;
  display: grid;
  gap: 0.25rem;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 1rem 1.05rem 1rem 1.25rem;
  background: rgba(15, 20, 18, 0.42);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  visibility: visible;
  opacity: 0.52;
  transform: translateX(18px) scale(0.94);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.75s ease, opacity 0.75s ease, visibility 0.75s ease;
}

.hero-apartments > div:hover,
.hero-apartments > div:focus-visible {
  border-color: rgba(245, 216, 138, 0.9);
  opacity: 1;
  outline: none;
  transform: translateX(0) scale(1);
}

.hero-apartments > div::before {
  position: absolute;
  left: 0.72rem;
  top: 0.95rem;
  bottom: 0.95rem;
  width: 3px;
  border-radius: 999px;
  content: "";
  background: rgba(245, 216, 138, 0.9);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.28s ease, transform 0.38s ease;
}

.hero-apartments > div.is-active {
  border-color: rgba(245, 216, 138, 0.95);
  background:
    linear-gradient(135deg, rgba(245, 216, 138, 0.22), rgba(255, 255, 255, 0.2)),
    rgba(14, 19, 16, 0.56);
  visibility: visible;
  opacity: 1;
  transform: translateX(0) scale(1.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-apartments > div.is-active::after {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  border-radius: 999px;
  padding: 0.26rem 0.48rem;
  content: attr(data-image-label);
  color: #17201c;
  background: linear-gradient(135deg, #f7d987, #dba13a);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-apartments > div.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.hero-apartments span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-apartments strong {
  color: #fff;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.15;
}

.availability-chip {
  position: relative;
  right: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  max-width: min(430px, calc(100% - 2rem));
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  font-weight: 800;
  margin-top: 1.4rem;
  animation: chipFloat 4.8s ease-in-out infinite;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ee6a5;
  box-shadow: 0 0 0 0 rgba(158, 230, 165, 0.7);
  animation: pulse 1.7s infinite;
}

.band,
.stays,
.discover {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.anchor-target {
  position: relative;
  top: -110px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.band {
  background: var(--mist);
}

.intro {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 7vw, 5rem);
}

.intro::after {
  position: absolute;
  right: -12%;
  bottom: 16%;
  width: 44%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 154, 67, 0.7), transparent);
  animation: lineSweep 5.8s ease-in-out infinite;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 1120px;
  margin-top: 2rem;
}

.quick-facts span {
  border: 1px solid rgba(200, 154, 67, 0.28);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 44px rgba(32, 38, 35, 0.06);
}

.quick-facts strong {
  display: block;
  color: var(--gold);
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.15;
}

.feature-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  width: 100%;
  margin: clamp(1.6rem, 4vw, 2.6rem) 0 0;
  color: var(--ink);
}

.feature-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 67, 0.28);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(142, 165, 143, 0.12));
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(32, 38, 35, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card::after {
  position: absolute;
  inset: auto -15% -45% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(200, 154, 67, 0.16);
  content: "";
  transition: transform 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(200, 154, 67, 0.58);
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(32, 38, 35, 0.13);
}

.feature-card:hover::after {
  transform: translate(-18px, -18px) scale(1.15);
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
}

.feature-card strong {
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
}

.feature-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.42;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.stays {
  position: relative;
}

.booking-whatsapp-card {
  position: absolute;
  top: clamp(2.8rem, 5vw, 4.5rem);
  right: clamp(1rem, 5vw, 5rem);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 140px;
  align-items: center;
  gap: 0.85rem;
  max-width: 460px;
  border: 1px solid rgba(200, 154, 67, 0.32);
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(32, 38, 35, 0.12);
  backdrop-filter: blur(16px);
}

.booking-whatsapp-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.14rem, 1.45vw, 1.38rem);
  font-weight: 900;
  line-height: 1.22;
}

.booking-whatsapp-card img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

.stay-carousel {
  position: relative;
  margin-top: 2rem;
  padding: 0 1rem 7.6rem;
  overflow: hidden;
}

.stay-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.2rem);
  min-height: 640px;
  perspective: 1400px;
}

.stay-card {
  position: relative;
  flex: 0 0 min(300px, 17vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(32, 38, 35, 0.08);
  opacity: 0.56;
  cursor: pointer;
  transform: translateY(48px) scale(0.88);
  transform-style: preserve-3d;
  transition: flex-basis 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease;
  filter: saturate(0.78);
}

.stay-card.is-active {
  order: 2;
  flex-basis: min(1100px, 66vw);
  opacity: 1;
  cursor: default;
  filter: saturate(1);
  transform: translateY(0) scale(1);
  box-shadow: var(--shadow);
}

.stay-card.is-active {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 1fr);
  align-items: stretch;
}

.stay-card.is-prev {
  order: 1;
}

.stay-card.is-next {
  order: 3;
}

.stay-card:not(.is-active):hover {
  opacity: 0.82;
  transform: translateY(34px) scale(0.92);
}

.stay-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.36), transparent 28%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.stay-card:hover::after {
  opacity: 1;
}

.stay-card:not(.is-active) .stay-booking {
  display: none;
}

.stay-card:not(.is-active) .stay-body {
  min-height: 300px;
}

.stay-card:not(.is-active) .stay-body p {
  margin-bottom: 0;
}

.stay-card:not(.is-active) .stay-body li:nth-child(n + 4) {
  display: none;
}

.stay-arrow {
  position: absolute;
  bottom: 1.82rem;
  z-index: 5;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(200, 154, 67, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #f7d987, #dba13a);
  color: var(--ink);
  font-size: 1.95rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(200, 154, 67, 0.32);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.stay-arrow:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stay-arrow.prev {
  left: max(0.85rem, calc(50% - 8.35rem));
}

.stay-arrow.next {
  right: max(0.85rem, calc(50% - 8.35rem));
}

.stay-dots {
  position: absolute;
  left: 50%;
  bottom: 1.28rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: min(19rem, calc(100% - 2rem));
  min-height: 4.1rem;
  border: 1px solid rgba(200, 154, 67, 0.34);
  border-radius: 999px;
  padding: 0 5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(32, 38, 35, 0.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.stay-dots button {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 32, 28, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.stay-dots button.is-active {
  width: 2.2rem;
  background: var(--gold);
}

.stay-visual {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(23, 32, 28, 0.18)),
    var(--gold);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  animation: visualFlow 7s ease-in-out infinite alternate;
}

.stay-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(13, 20, 17, 0.72));
  opacity: 0.86;
}

.stay-visual-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.stay-visual-label strong {
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.stay-visual-label small {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.stay-visual[data-gallery-images] {
  cursor: zoom-in;
}

.stay-visual.has-photo {
  background-position: center;
  background-size: cover;
}

.stay-gallery-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 8s ease;
}

.stay-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-count {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(23, 32, 28, 0.58);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.stay-image-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.stay-image-arrow:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) scale(1.06);
}

.stay-image-arrow.prev {
  left: 1rem;
}

.stay-image-arrow.next {
  right: 1rem;
}

.stay-card.is-active .stay-visual {
  height: 100%;
  min-height: 640px;
}

.stay-card.is-active .stay-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  grid-auto-rows: max-content;
  gap: 1rem;
  align-items: start;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.stay-card.is-active .stay-body > .size,
.stay-card.is-active .stay-body > h3,
.stay-card.is-active .stay-body > .price-strip,
.stay-card.is-active .stay-body > ul,
.stay-card.is-active .stay-body > p {
  grid-column: 1;
}

.stay-card.is-active .stay-booking {
  grid-column: 2;
  grid-row: 1 / span 5;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 0.65rem;
}

.stay-visual.sage {
  background-color: var(--sage);
}

.stay-visual.clay {
  background-color: var(--clay);
}

.stay-body {
  padding: 1.35rem;
}

.size {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-weight: 800;
}

.price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.8rem 0 1rem;
}

.price-chip {
  display: grid;
  min-width: 128px;
  border: 1px solid rgba(200, 154, 67, 0.32);
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 207, 134, 0.18)),
    #fff;
  box-shadow: 0 16px 34px rgba(47, 56, 50, 0.08);
}

.price-chip strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1;
}

.price-chip em,
.price-chip small {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.stay-body ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.stay-body li::before {
  margin-right: 0.45rem;
  color: var(--sage);
  content: "✓";
  font-weight: 800;
}

.stay-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.stay-booking {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.stay-booking::before {
  content: "Verfügbarkeit & Buchung";
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(200, 154, 67, 0.13);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 1.2rem;
  align-items: start;
  margin-top: 2rem;
}

.calendar-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(32, 38, 35, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.calendar-panel:hover,
.booking-form:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.compact-calendar,
.inline-booking {
  padding: 0.54rem;
  box-shadow: none;
}

.compact-calendar:hover,
.inline-booking:hover {
  transform: none;
  box-shadow: none;
}

.calendar-toolbar,
.calendar-legend,
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-toolbar {
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
}

.compact-calendar .calendar-toolbar {
  grid-template-columns: 36px 1fr 36px;
  margin-bottom: 0.75rem;
}

.compact-calendar .calendar-toolbar strong {
  font-size: 0.9rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.compact-calendar .icon-button {
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
}

.calendar-legend {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.compact-calendar .calendar-legend {
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.calendar-legend i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.calendar-legend .free {
  background: #fff;
  border: 1px solid var(--line);
}

.calendar-legend .blocked {
  background: #d6d1c8;
}

.calendar-legend .selected {
  background: var(--gold);
}

.calendar-weekdays {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.compact-calendar .calendar-weekdays,
.compact-calendar .calendar-grid {
  gap: 0.25rem;
}

.compact-calendar .calendar-weekdays {
  font-size: 0.68rem;
}

.calendar-grid button,
.calendar-grid span {
  aspect-ratio: 1;
}

.calendar-grid button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  animation: dayIn 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.compact-calendar .calendar-grid button {
  min-width: 0;
  border-radius: 6px;
  padding: 0;
  font-size: 0.72rem;
}

.calendar-grid button:hover {
  transform: translateY(-2px);
}

.calendar-grid .is-blocked {
  color: #908a82;
  background: #d6d1c8;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-grid .is-selected {
  color: #191b18;
  border-color: var(--gold);
  background: #efca7a;
  animation: selectedPop 0.36s ease both;
}

.booking-form {
  display: grid;
  gap: 0.64rem;
}

.inline-booking {
  gap: 0.52rem;
}

.stay-card.is-active .inline-booking {
  grid-template-columns: 1fr;
}

.stay-card.is-active .stay-booking .form-row {
  grid-template-columns: 1fr 1fr;
}

.stay-card.is-active .stay-booking .guest-name-row {
  grid-template-columns: 1fr 1fr;
}

.stay-card.is-active .stay-booking textarea {
  min-height: 58px;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.inline-booking label {
  font-size: 0.78rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stay-booking .form-row {
  grid-template-columns: 1fr;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inline-booking input,
.inline-booking select,
.inline-booking textarea {
  padding: 0.5rem 0.62rem;
  font-size: 0.84rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 154, 67, 0.16);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.payment-note {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 32, 28, 0.48);
  backdrop-filter: blur(10px);
}

.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 32, 28, 0.5);
  backdrop-filter: blur(12px);
}

.guide-modal[hidden] {
  display: none;
}

.guide-dialog {
  position: relative;
  width: min(760px, 100%);
  border: 1px solid rgba(200, 154, 67, 0.35);
  border-radius: 8px;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 80px rgba(23, 32, 28, 0.28);
  animation: paymentIn 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.guide-dialog h3 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.guide-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.guide-grid span {
  color: var(--gold);
  font-weight: 900;
}

.guide-grid strong {
  display: block;
  margin: 0.35rem 0;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 110;
  border: 1px solid rgba(200, 154, 67, 0.42);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(23, 32, 28, 0.18);
  font-weight: 900;
  transform: translate(-50%, 16px);
  opacity: 0;
}

.site-toast.is-visible {
  animation: toastIn 0.32s ease both;
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes cookieRise {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes cookieBackdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cookieBackdropHide {
  to {
    opacity: 0;
  }
}

@keyframes cookieDialogIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cookieHide {
  to {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@keyframes cookieRiseMobile {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cookieHideMobile {
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

.payment-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2rem);
  background: rgba(10, 16, 14, 0.76);
  backdrop-filter: blur(14px);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-dialog {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
  border: 1px solid rgba(235, 194, 103, 0.38);
  border-radius: 8px;
  overflow: hidden;
  background: #101713;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  animation: modalIn 0.28s ease both;
}

.gallery-dialog img {
  display: block;
  width: 100%;
  height: min(64vh, 640px);
  object-fit: contain;
  background: #0c120f;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.gallery-close {
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.4rem;
}

.gallery-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs button {
  flex: 0 0 92px;
  height: 64px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: rgba(23, 32, 28, 0.1);
  cursor: pointer;
  opacity: 0.66;
}

.gallery-thumbs button.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-dialog {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(200, 154, 67, 0.35);
  border-radius: 8px;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 80px rgba(23, 32, 28, 0.28);
  animation: paymentIn 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.payment-dialog h3 {
  margin: 0.2rem 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.payment-dialog p {
  color: var(--muted);
  line-height: 1.5;
}

.payment-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.payment-methods {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-dark);
}

.cookie-notice {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  width: 100%;
  padding: 1rem;
  background: rgba(14, 20, 17, 0.52);
  color: var(--ink);
  backdrop-filter: blur(14px);
  animation: cookieBackdrop 0.28s ease both;
}

.cookie-notice::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 154, 67, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 78%, rgba(142, 165, 143, 0.2), transparent 24rem);
  pointer-events: none;
}

.cookie-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  border: 1px solid rgba(200, 154, 67, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  animation: cookieDialogIn 0.32s ease both;
}

.cookie-copy {
  padding: 1.25rem 1.25rem 0.7rem;
  background: #fff;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.25rem 1.25rem 1.25rem;
  background: #fff;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice.is-hiding {
  animation: cookieBackdropHide 0.26s ease both;
}

.cookie-copy > strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: rgba(142, 165, 143, 0.18);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-settings {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  border: 1px solid rgba(231, 224, 211, 0.9);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.74);
}

.cookie-settings input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: var(--gold);
}

.cookie-settings span {
  display: grid;
  gap: 0.15rem;
}

.cookie-settings em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.35;
}

.cookie-actions {
  display: grid;
  gap: 0.55rem;
}

.cookie-actions a {
  color: var(--ink);
  grid-column: 1 / -1;
  justify-self: center;
  font-weight: 900;
  font-size: 0.88rem;
  text-decoration: none;
}

.cookie-actions [data-cookie-accept] {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.cookie-actions a:hover {
  color: var(--gold-dark);
}

.legal-page {
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 154, 67, 0.12), transparent 28%),
    var(--paper);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(32, 38, 35, 0.08);
}

.legal-content h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.legal-content h2 {
  margin-top: 1.7rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
}

.payment-success {
  display: grid;
  justify-items: center;
  text-align: center;
}

.payment-success[hidden] {
  display: none;
}

.payment-success.is-visible .success-check {
  animation: checkPop 0.58s cubic-bezier(0.2, 0.9, 0.2, 1.25) both;
}

.payment-success.is-visible h3,
.payment-success.is-visible p,
.payment-success.is-visible .button {
  animation: successRise 0.45s ease both;
}

.payment-success.is-visible p {
  animation-delay: 0.08s;
}

.payment-success.is-visible .button {
  animation-delay: 0.14s;
}

.success-check {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  color: #17201c;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, #f6d687, #8ea58f);
  box-shadow: 0 20px 46px rgba(142, 165, 143, 0.34);
  font-size: 2.2rem;
  font-weight: 900;
}

@keyframes paymentIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes checkPop {
  0% {
    opacity: 0;
    transform: scale(0.56) rotate(-14deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes successRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sight-slider {
  position: relative;
  min-height: clamp(660px, 82vh, 920px);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid rgba(20, 32, 27, 0.14);
  border-radius: 8px;
  color: #fff;
  background: #14201b;
  box-shadow: 0 30px 80px rgba(17, 25, 22, 0.18);
  isolation: isolate;
}

.sight-track,
.sight-slide {
  position: absolute;
  inset: 0;
}

.sight-slide {
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4%) scale(1.02);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sight-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.sight-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 17, 15, 0.88) 0%, rgba(12, 17, 15, 0.48) 44%, rgba(188, 139, 61, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.7), transparent 46%),
    var(--cms-hoher-schwarm, linear-gradient(135deg, #24382f, #a27a43));
  background-position: center;
  background-size: cover;
  transform: translateY(var(--sight-shift, 0px)) scale(1.08);
  transition: transform 1.2s ease, filter 0.8s ease;
}

.sight-slide.is-active .sight-bg {
  animation: sightPhotoDrift 15s linear both;
}

.sight-slider:hover .sight-bg {
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(var(--sight-shift, 0px)) scale(1.12);
}

.sight-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, 0.18) 63%, transparent 64%),
    radial-gradient(circle at 75% 20%, rgba(245, 211, 126, 0.25), transparent 19%);
  opacity: 0.78;
}

.sight-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 12, 10, 0.72), transparent 44%),
    radial-gradient(circle at 26% 76%, rgba(244, 211, 126, 0.28), transparent 18%);
}

.sight-bg.grotten {
  background:
    linear-gradient(90deg, rgba(12, 17, 15, 0.88) 0%, rgba(12, 17, 15, 0.5) 46%, rgba(73, 99, 91, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.7), transparent 48%),
    var(--cms-feengrotten, linear-gradient(135deg, #2b241f, #b5844a));
  background-position: center;
  background-size: cover;
}

.sight-bg.grotten::before {
  opacity: 0.58;
}

.sight-bg.forest {
  background:
    linear-gradient(90deg, rgba(12, 17, 15, 0.88) 0%, rgba(12, 17, 15, 0.48) 46%, rgba(58, 84, 70, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.68), transparent 46%),
    var(--cms-saaleradweg, linear-gradient(135deg, #1d302d, #5f7f77));
  background-position: center;
  background-size: cover;
}

.sight-bg.forest::before {
  opacity: 0.62;
}

.sight-bg.markt {
  background:
    linear-gradient(90deg, rgba(12, 17, 15, 0.88) 0%, rgba(12, 17, 15, 0.48) 46%, rgba(188, 139, 61, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.62), transparent 46%),
    var(--cms-markt, linear-gradient(135deg, #314139, #c49a55));
  background-position: center;
  background-size: cover;
}

.sight-bg.markt::before {
  opacity: 0.58;
}

.sight-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 82%);
  padding: clamp(2rem, 6vw, 5.6rem);
  transform: translateY(26px);
  opacity: 0;
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}

.sight-slide.is-active .sight-copy {
  opacity: 1;
  transform: translateY(0);
}

.sight-copy span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--soft-gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sight-copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.sight-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.75vw, 1.38rem);
  line-height: 1.7;
}

.sight-controls {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 0.75rem;
  transform: translateY(-50%);
}

.sight-controls button {
  display: grid;
  width: 3.65rem;
  height: 3.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.sight-controls button:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-3px);
}

.sight-dots {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.sight-dots button {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.sight-dots button.is-active {
  width: 2.4rem;
  background: var(--gold);
}

.sight-timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.sight-timer span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--soft-gold), var(--gold));
}

.sight-timer span.is-running {
  animation: sightTimer 15s linear both;
}

.discover-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.discover-notes span {
  border: 1px solid rgba(20, 32, 27, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-grid article {
  border: 1px solid rgba(200, 154, 67, 0.26);
  border-radius: 8px;
  padding: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 154, 67, 0.15), transparent 9rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(32, 38, 35, 0.06);
}

.trust-grid span {
  color: var(--gold);
  font-weight: 900;
}

.trust-grid strong {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-size: 1.08rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-grid strong,
.contact-grid a:not(.button) {
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 1.65rem;
  top: 7.15rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  padding: 0;
  color: #fff;
  background: #1f9f63;
  box-shadow: 0 16px 40px rgba(31, 159, 99, 0.32);
  font-weight: 900;
  transition: transform 0.2s ease;
  animation: whatsappBreath 2.6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(-42px, 30px, 0) scale(0.985);
  transition: opacity 0.68s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.68s ease, transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.from-right {
  transform: translate3d(42px, 30px, 0) scale(0.985);
}

.reveal.from-left {
  transform: translate3d(-42px, 30px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.trust .section-heading {
  max-width: 760px;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes slowZoom {
  from {
    transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.04);
  }
  to {
    transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.1);
  }
}

@keyframes heroPhotoFlow {
  0% {
    opacity: 0;
    transform: translateY(calc(var(--hero-parallax, 0) * 1px)) translateX(4%) scale(1.08);
  }
  7% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: translateY(calc(var(--hero-parallax, 0) * 1px)) translateX(-3%) scale(1.14);
  }
  32%,
  100% {
    opacity: 0;
    transform: translateY(calc(var(--hero-parallax, 0) * 1px)) translateX(-6%) scale(1.16);
  }
}

@keyframes driftLines {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 220px 220px, -360px 360px;
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(200, 154, 67, 0);
  }
  50% {
    box-shadow: 0 0 26px rgba(200, 154, 67, 0.34);
  }
}

@keyframes heroLogoRise {
  from {
    opacity: 0;
    transform: translateY(54px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    transform: translateX(-8%);
    opacity: 0.25;
  }
  50% {
    transform: translateX(-24%);
    opacity: 0.9;
  }
}

@keyframes visualFlow {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 26px -18px, 0 0, 0 0;
  }
}

@keyframes dayIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes selectedPop {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sightPhotoDrift {
  from {
    transform: translateY(var(--sight-shift, 0px)) scale(1.08);
  }
  to {
    transform: translateY(var(--sight-shift, 0px)) scale(1.16) translateX(-1.5%);
  }
}

@keyframes sightTimer {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes whatsappBreath {
  0%,
  100% {
    box-shadow: 0 16px 40px rgba(31, 159, 99, 0.32);
  }
  50% {
    box-shadow: 0 16px 54px rgba(31, 159, 99, 0.55);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 16px rgba(158, 230, 165, 0);
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-apartments {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(820px, 100%);
    min-height: 92px;
    margin-top: 1rem;
    transform: none;
  }

  .hero-apartments > div {
    min-height: 82px;
    transform: none;
  }
}

@media (max-width: 940px) {
  .reveal,
  .reveal.from-left,
  .reveal.from-right,
  .reveal:nth-of-type(even),
  .band:nth-of-type(even) .reveal,
  .stays .section-heading.reveal,
  .trust .section-heading.reveal {
    transform: translate3d(0, 28px, 0) scale(0.985);
  }

  .reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-header {
    min-height: 58px;
    padding: 0.5rem 1rem;
  }

  .brand-logo {
    width: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .booking-layout,
  .contact-grid,
  .trust-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding: 7rem 1.25rem 2.5rem;
  }

  .hero-logo {
    width: min(240px, 52vw);
  }

  .hero-content {
    max-width: 660px;
  }

  .hero-apartments {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(760px, 100%);
    min-height: 92px;
    margin-top: 1rem;
    transform: none;
  }

  .hero-apartments > div {
    min-height: 82px;
    transform: none;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2rem, 7.2vw, 3.45rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.7rem, 5.8vw, 2.85rem);
  }

  .hero-copy,
  .lead {
    font-size: 1rem;
  }

  .stay-carousel {
    padding: 0 2.8rem 7.3rem;
  }

  .booking-whatsapp-card {
    position: relative;
    top: auto;
    right: auto;
    grid-template-columns: 1fr 120px;
    max-width: none;
    width: 100%;
    margin: 1.7rem 0 0;
  }

  .booking-whatsapp-card img {
    width: 120px;
    height: 120px;
  }

  .stay-grid {
    min-height: auto;
  }

  .stay-card {
    flex-basis: 22vw;
    transform: translateY(30px) scale(0.82);
  }

  .stay-card.is-active {
    grid-template-columns: 1fr;
    flex-basis: min(720px, 76vw);
  }

  .stay-card.is-active .stay-visual {
    min-height: 260px;
  }

  .stay-card.is-active .stay-body {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .stay-card.is-active .stay-booking {
    grid-column: 1;
    grid-row: auto;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .stay-card:not(.is-active) .stay-body {
    min-height: 260px;
  }

  .availability-chip {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    max-width: calc(100% - 2rem);
    margin: 1.5rem auto 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 1.5rem 0 0;
  }

  .feature-card {
    min-height: auto;
    padding: 0.9rem;
  }

  .intro {
    padding-top: 3rem;
  }

  .sight-slider {
    min-height: 580px;
  }

  .sight-copy {
    width: min(660px, 86%);
  }
}

@media (max-width: 620px) {
  .reveal,
  .reveal.from-left,
  .reveal.from-right {
    filter: none;
  }

  .site-header {
    min-height: 54px;
    padding: 0.35rem 0.75rem;
  }

  .brand-logo {
    width: 68px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 4.9rem 1rem 1.8rem;
    align-items: end;
  }

  .language-switcher > button {
    width: 2.65rem;
    height: 2.65rem;
  }

  .language-menu {
    top: 3rem;
    right: 0;
    left: auto;
  }

  .hero-logo {
    width: min(176px, 52vw);
    margin-bottom: 0.8rem;
  }

  h1 {
    font-size: clamp(1.62rem, 8.7vw, 2.35rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(1.45rem, 7.5vw, 2.15rem);
    line-height: 1.02;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-copy,
  .lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .motion-lines {
    display: none;
  }

  .availability-chip {
    max-width: 100%;
    border-radius: 8px;
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
  }

  .hero-actions,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-apartments {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
    min-height: 0;
  }

  .hero-apartments > div {
    min-height: auto;
    width: 100%;
    overflow: hidden;
    padding: 0.72rem 0.78rem;
    transform: none;
  }

  .hero-apartments > div.is-active {
    transform: none;
  }

  .hero-apartments > div::before {
    display: none;
  }

  .hero-apartments > div.is-active::after {
    position: static;
    width: max-content;
    margin-top: 0.25rem;
  }

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

  .feature-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    width: 100%;
    margin-top: 1.25rem;
    margin-bottom: 0;
  }

  .feature-card {
    min-height: auto;
    gap: 0.35rem;
  }

  .stay-carousel {
    padding: 0 0 7.1rem;
  }

  .stay-dots {
    bottom: 1.18rem;
    width: min(17rem, calc(100% - 1rem));
    min-height: 3.85rem;
    padding: 0 4.35rem;
  }

  .booking-whatsapp-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 1.6rem;
    padding: 1rem;
  }

  .booking-whatsapp-card img {
    width: 150px;
    height: 150px;
  }

  .stay-grid {
    display: block;
  }

  .stay-card {
    display: none;
    opacity: 1;
    transform: none;
  }

  .stay-card.is-active {
    display: block;
    width: 100%;
    transform: none;
  }

  .stay-card.is-active .stay-visual {
    min-height: 220px;
  }

  .gallery-count {
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.76rem;
  }

  .stay-image-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.55rem;
  }

  .stay-image-arrow.prev {
    left: 0.65rem;
  }

  .stay-image-arrow.next {
    right: 0.65rem;
  }

  .gallery-modal {
    padding: 0.65rem;
  }

  .gallery-dialog img {
    height: 68vh;
  }

  .gallery-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .gallery-nav {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.7rem;
  }

  .gallery-nav.prev {
    left: 0.65rem;
  }

  .gallery-nav.next {
    right: 0.65rem;
  }

  .gallery-caption {
    display: grid;
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .stay-card.is-active .stay-body {
    display: block;
  }

  .stay-card.is-active .stay-booking .form-row {
    grid-template-columns: 1fr;
  }

  .stay-card.is-active .stay-booking .guest-name-row {
    grid-template-columns: 1fr;
  }

  .stay-card:not(.is-active) .stay-booking {
    display: none;
  }

  .stay-arrow {
    top: auto;
    bottom: 1.7rem;
    width: 2.75rem;
    height: 2.75rem;
    border-color: rgba(200, 154, 67, 0.82);
    background: linear-gradient(135deg, #f7d987, #dba13a);
    color: #171f1b;
    box-shadow: 0 16px 44px rgba(200, 154, 67, 0.42);
  }

  .stay-arrow.prev {
    left: max(0.45rem, calc(50% - 7.1rem));
  }

  .stay-arrow.next {
    right: max(0.45rem, calc(50% - 7.1rem));
  }

  .button {
    width: 100%;
    min-height: 42px;
  }

  .cookie-notice {
    inset: 0;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    max-height: none;
    overflow: auto;
    padding: 0.75rem;
    transform: none;
    animation-name: cookieBackdrop;
  }

  .cookie-dialog {
    width: min(100%, 520px);
  }

  .cookie-copy {
    padding: 1rem 1rem 0.65rem;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    padding: 0.2rem 1rem 1rem;
  }

  .cookie-copy > strong {
    font-size: 1.05rem;
  }

  .cookie-notice p,
  .cookie-settings em {
    font-size: 0.86rem;
  }

  .cookie-notice.is-hiding {
    animation-name: cookieBackdropHide;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .cookie-actions a {
    text-align: center;
  }

  .calendar-panel,
  .booking-form {
    padding: 0.7rem;
  }

  .calendar-toolbar {
    grid-template-columns: 38px 1fr 38px;
    gap: 0.35rem;
  }

  .calendar-toolbar strong {
    font-size: 0.9rem;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 0.2rem;
  }

  .calendar-grid button {
    border-radius: 5px;
    font-size: 0.74rem;
    min-height: 36px;
  }

  .calendar-legend {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    font-size: 0.74rem;
  }

  input,
  select,
  textarea {
    padding: 0.72rem 0.75rem;
    font-size: 0.95rem;
  }

  .sight-slider {
    min-height: 520px;
  }

  .sight-copy {
    width: 100%;
    padding: 1.1rem;
    padding-right: 4.4rem;
  }

  .sight-copy h3 {
    font-size: clamp(2.2rem, 13vw, 3.7rem);
  }

  .sight-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sight-controls {
    right: 0.65rem;
  }

  .sight-controls button {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.45rem;
  }

  .sight-dots {
    left: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .whatsapp-float {
    right: 1.15rem;
    top: 6.85rem;
    bottom: auto;
    width: 3rem;
    height: 3rem;
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .band,
  .stays,
  .discover {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero {
    min-height: auto;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  h1 {
    font-size: clamp(1.62rem, 8.7vw, 2.25rem);
  }

  .quick-facts span,
  .stay-body,
  .calendar-panel,
  .booking-form {
    border-radius: 7px;
  }

  .stay-arrow {
    top: auto;
    bottom: 1.68rem;
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.55rem;
  }

  .stay-arrow.prev {
    left: max(0.35rem, calc(50% - 6.1rem));
  }

  .stay-arrow.next {
    right: max(0.35rem, calc(50% - 6.1rem));
  }

  .stay-dots {
    width: min(15rem, calc(100% - 0.75rem));
    min-height: 3.65rem;
    padding: 0 3.65rem;
  }

  .calendar-grid button {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .compact-calendar .calendar-grid button {
    font-size: 0.68rem;
  }
}

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