: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;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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;
}

.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: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.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);
}

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

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

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

.hero-gallery {
  overflow: hidden;
  background: #1b241f;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroPhotoFlow 32s ease-in-out infinite;
  transform: translateY(calc(var(--hero-parallax, 0) * 1px)) scale(1.08);
}

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

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

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

.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;
}

.hero-logo {
  width: min(230px, 48vw);
  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 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

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

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

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

.availability-chip {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2.5rem;
  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;
  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;
}

.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(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 920px;
  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;
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
}

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

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

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

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

.stay-card {
  position: relative;
  flex: 0 0 min(420px, 26vw);
  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(760px, 48vw);
  opacity: 1;
  cursor: default;
  filter: saturate(1);
  transform: translateY(0) scale(1);
  box-shadow: var(--shadow);
}

.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: 330px;
}

.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;
  top: 22rem;
  z-index: 4;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(32, 38, 35, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.stay-arrow.prev {
  left: 0.45rem;
}

.stay-arrow.next {
  right: 0.45rem;
}

.stay-dots {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  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 {
  height: 210px;
  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.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;
}

.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 {
  color: var(--muted);
  line-height: 1.55;
}

.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: "Direkt buchen";
  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.8rem;
  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.75rem;
}

.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: 1rem;
}

.inline-booking {
  gap: 0.75rem;
}

.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 textarea {
  padding: 0.7rem 0.75rem;
  font-size: 0.9rem;
}

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;
}

.sight-slider {
  position: relative;
  min-height: clamp(520px, 68vh, 760px);
  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%),
    url("saalfeld-hoher-schwarm.jpg");
  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%),
    url("saalfeld-feengrotten.jpg");
  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%),
    url("saalfeld-start-2.jpg");
  background-position: center;
  background-size: cover;
}

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

.sight-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 78%);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  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.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.sight-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  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.25rem;
  height: 3.25rem;
  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;
}

.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);
  line-height: 1.7;
}

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

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 1rem;
  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(8px);
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.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: 940px) {
  .desktop-nav {
    display: none;
  }

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

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

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

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

  .stay-card.is-active {
    flex-basis: min(680px, 72vw);
  }

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

  .availability-chip {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    min-height: 52px;
    padding: 0.35rem 0.8rem;
  }

  .brand-logo {
    width: 76px;
  }

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

  .hero {
    min-height: 92vh;
    padding-top: 7rem;
  }

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

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

  .stay-grid {
    display: block;
  }

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

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

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

  .stay-arrow {
    top: 13rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .stay-arrow.prev {
    left: 0.55rem;
  }

  .stay-arrow.next {
    right: 0.55rem;
  }

  .button {
    width: 100%;
  }

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

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

  .calendar-grid button {
    border-radius: 6px;
    font-size: 0.85rem;
  }

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

  .sight-copy {
    width: 100%;
    padding: 1.25rem;
    padding-right: 5.2rem;
  }

  .sight-copy h3 {
    font-size: clamp(2rem, 14vw, 3.4rem);
  }

  .sight-controls {
    right: 0.85rem;
  }

  .sight-controls button {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.7rem;
  }

  .sight-dots {
    left: 1.25rem;
  }
}

@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;
  }
}
