html {
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.booking-page-body,
.booking-page {
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.booking-page {
  background:
    radial-gradient(circle at top left, rgba(208, 184, 150, 0.2), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f4ecdf 100%);
}

.booking-page-body .hero-nav__desktop a {
  color: #3f362e;
}

.booking-page-body .site-sticky-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.booking-page-body .hero-nav::before {
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.94) 0%, rgba(247, 243, 236, 0.82) 58%, rgba(247, 243, 236, 0.52) 100%);
  box-shadow: 0 8px 22px rgba(60, 42, 21, 0.08);
  backdrop-filter: blur(8px);
}

.quick-info-footer,
.quick-info-footer__links {
  visibility: visible;
  opacity: 1;
}

.booking-page-body .hero-nav__desktop a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(185, 143, 69, 0.1), rgba(185, 143, 69, 0.95), rgba(185, 143, 69, 0.1));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.booking-page-body .hero-nav__desktop a.is-active::after {
  transform: scaleX(1);
}

.booking-page-body .booking-widget-card,
.booking-page-body .deskline-widget {
  --primary: #b98f45;
  --primary-dark: #9e7a3c;
  --foreground: #2b241e;
  --text-color: #2b241e;
  --muted: #6c5d50;
  color: #2b241e;
}

.booking-shell {
  width: min(1260px, calc(100vw - 40px));
  margin: 0 auto;
}

.booking-hero {
  position: relative;
  padding: 0 0 22px;
}

.booking-hero__shell {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.92), rgba(255, 252, 246, 0.84) 38%, rgba(250, 243, 233, 0.8) 100%);
  box-shadow: 0 24px 56px rgba(90, 68, 42, 0.08);
}

.booking-hero__shell::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 46%;
  width: 22%;
  background: linear-gradient(90deg, rgba(252, 247, 240, 1) 0%, rgba(252, 247, 240, 0.8) 42%, rgba(252, 247, 240, 0) 100%);
  pointer-events: none;
}

.booking-hero__copy,
.booking-hero__media {
  position: relative;
  z-index: 1;
}

.booking-hero__copy {
  display: grid;
  align-content: center;
  padding-top: 178px;
  padding-right: clamp(30px, 4vw, 74px);
  padding-bottom: 80px;
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 20px));
}

.booking-hero__copy h1 {
  margin: 0;
  color: #1f1916;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: none;
}

.booking-page-body .booking-hero__copy h1:not(.reveal-element) {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  animation: booking-hero-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
}

.booking-hero__script {
  margin: 4px 0 28px;
  color: #c19952;
  font-family: "Allura", cursive;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1;
  white-space: nowrap;
}

.booking-page-body .booking-hero__script:not(.reveal-element) {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  animation: booking-hero-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) 45ms forwards;
}

.booking-hero__copy > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #55483c;
  font-size: 1.05rem;
  line-height: 1.8;
}

.booking-page-body .booking-hero__copy > p:last-child:not(.reveal-element) {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  animation: booking-hero-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) 90ms forwards;
}

.booking-hero__media {
  min-height: 100%;
}

.booking-page-body .booking-hero__media:not(.reveal-element) {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.9);
  animation: booking-hero-scale 860ms cubic-bezier(0.22, 1, 0.36, 1) 110ms forwards;
}

.booking-hero__image-wrap {
  position: relative;
  min-height: 100%;
  height: 100%;
}

.booking-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(23, 17, 10, 0.1) 0%, rgba(23, 17, 10, 0) 35%);
}

.booking-hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.reveal-ready .booking-hero__media.reveal-element:not(.is-visible) img {
  transform: scale(1.06);
}

.booking-page-body .booking-hero__media:not(.reveal-element) .booking-hero__image-wrap img {
  transform: scale(1.06);
  animation: booking-hero-image 1.2s cubic-bezier(0.22, 1, 0.36, 1) 110ms forwards;
}

@keyframes booking-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes booking-hero-scale {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes booking-hero-image {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.booking-widget-section {
  padding: 12px 0 54px;
}

@media (prefers-reduced-motion: reduce) {
  .booking-page-body .booking-hero__copy h1:not(.reveal-element),
  .booking-page-body .booking-hero__script:not(.reveal-element),
  .booking-page-body .booking-hero__copy > p:last-child:not(.reveal-element),
  .booking-page-body .booking-hero__media:not(.reveal-element) {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .booking-hero__image-wrap img {
    transition: none;
    transform: none;
  }

  .booking-page-body .booking-hero__media:not(.reveal-element) .booking-hero__image-wrap img {
    animation: none;
    transform: none;
  }
}

.booking-widget-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 118px;
}

.booking-widget-card {
  overflow: hidden;
  border: 1px solid rgba(185, 143, 69, 0.16);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 250, 243, 0.96) 100%);
  box-shadow: 0 26px 58px rgba(78, 55, 31, 0.08);
}

.booking-widget-card__bar {
  padding: 18px 24px;
  background: linear-gradient(180deg, #caa35c 0%, #b98f45 100%);
  text-align: center;
}

.booking-widget-card__bar h2 {
  margin: 0;
  color: #fffaf2;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.booking-widget-card__body {
  position: relative;
  padding: 22px;
}

.booking-widget-stage {
  position: relative;
  min-height: 610px;
}

.deskline-widget {
  min-height: 610px;
  background: rgba(255, 252, 247, 0.78);
  border-radius: 20px;
}

.booking-widget-card__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.84), rgba(255, 252, 247, 0.92) 42%, rgba(255, 250, 243, 0.96) 100%);
  color: #6c5d50;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.booking-widget-card__spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(185, 143, 69, 0.18);
  border-top-color: #b98f45;
  border-radius: 50%;
  animation: booking-widget-spin 0.85s linear infinite;
}

.booking-widget-stage.is-ready .booking-widget-card__loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes booking-widget-spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-widget-card__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 143, 69, 0.14);
}

.booking-widget-card__fallback p {
  margin: 0;
  color: #6c5d50;
  font-size: 0.94rem;
  line-height: 1.65;
}

.booking-widget-card__fallback a,
.booking-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #caa35c 0%, #b98f45 100%);
  box-shadow: 0 18px 32px rgba(152, 110, 47, 0.2);
  color: #fffaf2;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.booking-widget-card__fallback a:hover,
.booking-widget-card__fallback a:focus-visible,
.booking-cta__button:hover,
.booking-cta__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(152, 110, 47, 0.24);
}

body.reveal-ready .booking-widget-card__fallback a.reveal-element.is-visible:hover,
body.reveal-ready .booking-widget-card__fallback a.reveal-element.is-visible:focus-visible,
body.reveal-ready .booking-cta__button.reveal-element.is-visible:hover,
body.reveal-ready .booking-cta__button.reveal-element.is-visible:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1) rotate(var(--reveal-rotate, 0deg)) !important;
  box-shadow: 0 22px 36px rgba(152, 110, 47, 0.24);
}

.booking-benefits {
  padding: 2px 0 56px;
}

.booking-benefits__head {
  text-align: center;
}

.booking-benefits__head h2 {
  margin: 0 0 28px;
  color: #2b241e;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.booking-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(185, 143, 69, 0.14);
  border-bottom: 1px solid rgba(185, 143, 69, 0.14);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(255, 249, 242, 0.72) 100%);
}

.booking-benefit {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 30px 24px 28px;
  text-align: center;
}

.booking-benefit + .booking-benefit {
  border-left: 1px solid rgba(185, 143, 69, 0.12);
}

.booking-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(185, 143, 69, 0.24);
  border-radius: 999px;
  color: #b98f45;
  background: rgba(255, 252, 247, 0.8);
}

.booking-benefit__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-benefit h3 {
  margin: 0;
  color: #2c2721;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.booking-benefit p {
  margin: 0;
  color: #5f5143;
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-cta {
  padding: 0 0 54px;
}

.booking-cta__panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.62) 0%, rgba(251, 247, 239, 0.44) 100%),
    url("images/phocagallery/sommer/kalbenalm-see-hochzeiger.jpg") center/cover no-repeat;
  box-shadow: 0 24px 54px rgba(78, 55, 31, 0.1);
}

.booking-cta__panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(246, 240, 231, 0.78) 0%, rgba(246, 240, 231, 0.56) 52%, rgba(246, 240, 231, 0.68) 100%);
}

.booking-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 300px;
  padding: 34px 26px;
  text-align: center;
}

.booking-cta__content h2 {
  margin: 0 0 12px;
  color: #1f1916;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.booking-cta__content p {
  max-width: 660px;
  margin: 0 0 22px;
  color: #473b30;
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .booking-hero__shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-hero__shell::after {
    display: none;
  }

  .booking-hero__copy {
    padding: 148px 30px 28px;
  }

  .booking-hero__image-wrap img {
    min-height: 430px;
  }

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

  .booking-benefit:nth-child(3),
  .booking-benefit:nth-child(4) {
    border-top: 1px solid rgba(185, 143, 69, 0.12);
  }

.booking-benefit:nth-child(3) {
  border-left: 0;
  }
}

@media (max-width: 960px) {
  .booking-widget-card__fallback {
    justify-content: center;
    text-align: center;
  }

  .booking-widget-card__fallback p {
    flex: 1 1 100%;
  }

  .booking-widget-card__fallback a {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .booking-page-body {
    overflow-x: hidden;
  }

  .booking-shell {
    width: 100%;
  }

  .booking-hero__shell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .booking-hero__copy {
    padding-top: 126px;
    padding-right: 18px;
    padding-bottom: 22px;
    padding-left: 18px;
  }

  .booking-hero__copy h1 {
    font-size: clamp(2.1rem, 8.9vw, 2.8rem);
  }

  .booking-hero__script {
    font-size: clamp(1.85rem, 7.8vw, 2.35rem);
    line-height: 0.96;
    white-space: normal;
  }

  .booking-hero__copy > p:last-child {
    max-width: none;
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .booking-hero__image-wrap img {
    min-height: 260px;
  }

  .booking-widget-card__body {
    padding: 16px;
  }

  .deskline-widget {
    min-height: 720px;
  }

  .booking-widget-card__fallback {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-widget-card__fallback a,
  .booking-cta__button {
    width: 100%;
    min-width: 0;
  }

  .booking-benefits__grid {
    grid-template-columns: 1fr;
  }

  .booking-benefit + .booking-benefit,
  .booking-benefit:nth-child(3),
  .booking-benefit:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(185, 143, 69, 0.12);
  }

  .booking-cta__panel,
  .booking-cta__content {
    min-height: 260px;
  }
}
