:root {
  --cf-blue: #03244a;
  --cf-sky: #6aa6cd;
  --cf-sand: #f5f1eb;
  --cf-gold: #fbbc04;
}

html.w-mod-js .footer:not([data-cf-ready]) {
  visibility: hidden !important;
}

.navbar_book-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease,
    visibility 0s linear;
}

.navbar_book-actions .cf-reservation-link {
  display: none;
}

.navbar_main {
  padding-top: 0.55rem !important;
  padding-bottom: 0.35rem !important;
  transition:
    padding 0.35s ease,
    background-color 0.35s ease;
}

.navbar_logo-wrap {
  gap: 0.75rem;
  width: auto !important;
  color: #fff;
  text-decoration: none;
}

.cf-navbar-brand-name {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  flex: none;
  color: #fff;
  font-family: "Gill Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1;
  white-space: nowrap;
}

.cf-navbar-brand-name span:last-child {
  color: #fff;
  font-size: inherit;
  letter-spacing: inherit;
}

.navbar {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.navbar > .padding-global.hide-tablet {
  max-height: 5rem;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease;
}

.navbar_links {
  transform: translateY(-0.2rem);
}

.navbar_logo {
  transition:
    width 0.35s ease,
    height 0.35s ease;
}

.navbar.is-scrolled {
  position: fixed !important;
  background: rgba(3, 36, 74, 0.94);
  box-shadow: 0 0.75rem 2.5rem rgba(2, 20, 43, 0.18);
  backdrop-filter: blur(14px);
}

.navbar.is-scrolled .navbar_main {
  padding-top: 0.34rem !important;
  padding-bottom: 0.34rem !important;
}

.navbar.is-scrolled .navbar_logo {
  width: 2.35rem !important;
  height: 2.35rem !important;
}

.navbar.is-scrolled .cf-navbar-brand-name {
  font-size: 0.76rem;
}

.navbar.is-scrolled > .padding-global.hide-tablet {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
}

.navbar.is-scrolled .navbar_line {
  opacity: 0.35;
}

.cf-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cf-reservation-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0.25rem 0 0.4rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.cf-reservation-link:hover {
  color: #fff;
  background: transparent;
  opacity: 1;
}

.cf-reservation-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.85;
  transform: scaleX(1);
  transform-origin: left center;
}

.cf-reservation-link:hover::after,
.cf-reservation-link:focus-visible::after {
  animation: cf-reservation-line 0.55s ease;
}

.cf-reservation-texts {
  position: relative;
  display: block;
  height: 1em;
  overflow: hidden;
}

.cf-reservation-text {
  display: block;
  transition: transform 0.32s ease;
}

.cf-reservation-text.is-secondary {
  position: absolute;
  top: 100%;
  left: 0;
}

.cf-reservation-link:hover .cf-reservation-text,
.cf-reservation-link:focus-visible .cf-reservation-text {
  transform: translateY(-100%);
}

@keyframes cf-reservation-line {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  45% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  46% {
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.cf-booking-bar {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 4rem);
  z-index: 15;
  display: grid;
  max-width: 72rem;
  grid-template-columns: minmax(0, 2fr) minmax(13rem, 0.7fr) auto;
  align-items: stretch;
  margin: 0 auto;
  padding: 0.4rem;
  color: var(--cf-blue);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(245, 241, 235, 0.94);
  box-shadow: 0 1.4rem 4rem rgba(2, 20, 43, 0.24);
  backdrop-filter: blur(16px);
}

/* Extiende el velo visual y equilibra el hero con blur en ambos bordes. */
.home-header_blur {
  height: 19rem;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 25%,
    rgba(0, 0, 0, 0.72) 52%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 25%,
    rgba(0, 0, 0, 0.72) 52%,
    transparent 100%
  );
}

.home-header_images::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  height: clamp(10rem, 22vh, 14rem);
  pointer-events: none;
  background: rgba(2, 20, 43, 0.14);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.58) 48%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.58) 48%,
    #000 100%
  );
}

.cf-hero-copy {
  position: absolute;
  z-index: 14;
  top: 48%;
  left: clamp(2.5rem, 6vw, 6.5rem);
  color: #fff;
  pointer-events: none;
  text-shadow:
    0 0.2rem 1rem rgba(1, 20, 43, 0.62),
    0 0.45rem 2rem rgba(1, 20, 43, 0.48);
  transform: translateY(-50%);
  animation: cf-hero-copy-in 0.9s cubic-bezier(0.2, 0.72, 0.2, 1) 0.2s both;
}

.cf-hero-copy h1 {
  margin: 0;
  color: inherit;
  font-family: "Zt Formom", "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.cf-hero-copy p {
  margin: 1rem 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes cf-hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 1.5rem));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.cf-booking-date-fields {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cf-booking-field {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 1.25rem;
  gap: 0.25rem 0.8rem;
  align-content: center;
  padding: 0.7rem clamp(0.9rem, 1.8vw, 1.55rem);
  border: 0;
  border-right: 1px solid rgba(3, 36, 74, 0.16);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cf-booking-label {
  color: rgba(3, 36, 74, 0.52);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.cf-booking-field strong {
  grid-column: 1;
  overflow: hidden;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cf-booking-calendar-icon {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 1.3rem;
  height: 1.18rem;
  align-self: center;
  border: 1.5px solid rgba(3, 36, 74, 0.58);
  border-radius: 0.22rem;
}

.cf-booking-calendar-icon::before {
  position: absolute;
  top: 0.28rem;
  right: -1.5px;
  left: -1.5px;
  border-top: 1.5px solid rgba(3, 36, 74, 0.58);
  content: "";
}

.cf-booking-calendar-icon::after {
  position: absolute;
  top: -0.23rem;
  left: 0.27rem;
  width: 1.5px;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(3, 36, 74, 0.66);
  box-shadow: 0.61rem 0 0 rgba(3, 36, 74, 0.66);
  content: "";
}

.cf-booking-calendar-svg {
  display: block;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 1.45rem;
  height: 1.45rem;
  align-self: center;
  justify-self: center;
  overflow: visible;
  color: rgba(3, 36, 74, 0.58);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cf-guest-picker {
  display: grid;
  grid-template-columns: minmax(5.3rem, 1fr) 1.9rem 1.55rem 1.9rem;
  align-items: center;
  padding: 0 0.7rem 0 clamp(0.8rem, 1.5vw, 1.25rem);
}

.cf-guest-button {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid rgba(3, 36, 74, 0.15);
  border-radius: 50%;
  color: var(--cf-blue);
  background: transparent;
  font-size: 0.7rem;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.cf-guest-button:hover {
  color: #fff;
  background: var(--cf-blue);
}

.cf-guest-picker strong {
  text-align: center;
}

.cf-booking-submit {
  min-width: 9rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--cf-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.cf-booking-submit:hover {
  color: var(--cf-blue);
  background: var(--cf-sky);
}

.cf-date-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.9rem);
  left: 0;
  z-index: 30;
  width: min(47rem, 100%);
  margin: auto;
  padding: 1.5rem;
  border: 1px solid rgba(3, 36, 74, 0.12);
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 2rem 6rem rgba(2, 20, 43, 0.3);
}

.cf-date-popover[hidden] {
  display: none;
}

.cf-calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(3, 36, 74, 0.11);
}

.cf-calendar-head > div {
  display: grid;
  gap: 0.45rem;
}

.cf-calendar-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.cf-calendar-close,
.cf-calendar-controls button {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(3, 36, 74, 0.14);
  border-radius: 50%;
  color: var(--cf-blue);
  background: #fff;
  cursor: pointer;
}

.cf-calendar-close {
  font-size: 1.2rem;
}

.cf-calendar-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 -2.25rem;
}

.cf-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.cf-calendar-month h3 {
  margin: 0 0 1.15rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
  text-transform: none;
}

.cf-calendar-weekdays,
.cf-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.cf-calendar-weekdays span {
  padding: 0.4rem 0;
  color: rgba(3, 36, 74, 0.45);
  font-size: 0.58rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

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

.cf-calendar-grid button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  color: var(--cf-blue);
  background: transparent;
  font-size: 0.72rem;
  cursor: pointer;
}

.cf-calendar-grid button:hover:not(:disabled) {
  background: rgba(106, 166, 205, 0.2);
}

.cf-calendar-grid button:disabled {
  color: rgba(3, 36, 74, 0.2);
  cursor: default;
}

.cf-calendar-grid button.is-today {
  box-shadow: inset 0 0 0 1px var(--cf-sky);
}

.cf-calendar-grid button.is-in-range {
  border-radius: 0;
  background: rgba(106, 166, 205, 0.2);
}

.cf-calendar-grid button.is-preview-range {
  border-radius: 0;
  background: rgba(106, 166, 205, 0.18);
}

.cf-calendar-grid button.is-preview-end {
  border-radius: 50%;
  background: rgba(106, 166, 205, 0.32);
  box-shadow: inset 0 0 0 1px rgba(3, 36, 74, 0.28);
}

.cf-calendar-grid button.is-start,
.cf-calendar-grid button.is-end {
  color: #fff;
  background: var(--cf-blue);
}

.cf-gallery-section {
  padding: 5rem 0 7rem;
  background: #fff;
}

.cf-gallery-groups {
  display: grid;
  gap: 6rem;
}

.cf-gallery-index {
  position: sticky;
  z-index: 20;
  top: 4.4rem;
  display: flex;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  align-items: center;
  gap: 0.35rem;
  margin: 0 auto 5rem;
  padding: 0.45rem;
  overflow-x: auto;
  border: 1px solid rgba(3, 36, 74, 0.12);
  border-radius: 999px;
  background: rgba(250, 248, 245, 0.97);
  box-shadow:
    0 0.8rem 2.5rem rgba(3, 36, 74, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.cf-gallery-index::-webkit-scrollbar {
  display: none;
}

.cf-gallery-index span,
.cf-gallery-index a {
  flex: none;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.cf-gallery-index span {
  color: rgba(3, 36, 74, 0.48);
}

.cf-gallery-index a {
  color: var(--cf-blue);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.cf-gallery-index a:hover {
  color: #fff;
  background: var(--cf-blue);
}

.cf-gallery-group {
  scroll-margin-top: 10rem;
}

.cf-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(18rem, 1fr);
  gap: 3rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(3, 36, 74, 0.22);
}

.cf-gallery-heading > * {
  min-width: 0;
}

.cf-gallery-kicker {
  margin-bottom: 0.75rem;
  color: var(--cf-sky);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cf-gallery-heading p {
  max-width: 38rem;
  margin: 0 0 0 auto;
  color: rgba(3, 36, 74, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  white-space: normal;
}

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

.cf-gallery-card {
  position: relative;
  height: clamp(20rem, 32vw, 34rem);
  grid-column: span 6;
  overflow: hidden;
  background: var(--cf-sand);
  cursor: zoom-in;
}

.cf-gallery-card:nth-child(4n + 1),
.cf-gallery-card:nth-child(4n + 4) {
  grid-column: span 7;
}

.cf-gallery-card:nth-child(4n + 2),
.cf-gallery-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.cf-gallery-card:last-child:nth-child(odd) {
  height: clamp(23rem, 40vw, 40rem);
  grid-column: 1 / -1;
}

.cf-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cf-gallery-card:hover img {
  transform: scale(1.045);
}

.cf-gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(3, 36, 74, 0.22));
  pointer-events: none;
}

.cf-lightbox {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  background: rgba(1, 19, 39, 0.93);
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0.35s;
}

.cf-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.cf-lightbox img {
  max-width: min(92vw, 90rem);
  max-height: 86vh;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cf-lightbox-stage {
  position: relative;
  display: grid;
  max-width: 92vw;
  max-height: 86vh;
  place-items: center;
  touch-action: pan-y;
}

.cf-lightbox-stage .cf-media-count {
  right: 0.8rem;
  bottom: 0.8rem;
}

.cf-lightbox > .cf-media-arrow.is-prev {
  left: 2rem;
}

.cf-lightbox > .cf-media-arrow.is-next {
  right: 2rem;
}

.cf-lightbox > .cf-media-arrow::before {
  display: none;
}

.cf-lightbox.is-open img {
  transform: scale(1);
}

.cf-lightbox-close,
.cf-modal-close {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 36, 74, 0.62);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.cf-lightbox-close:hover,
.cf-modal-close:hover {
  color: var(--cf-blue);
  background: #fff;
  transform: rotate(90deg);
}

.cf-cabin-trigger {
  cursor: pointer;
}

.cf-modal {
  position: fixed;
  z-index: 10040;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  background: rgba(1, 19, 39, 0.78);
  backdrop-filter: blur(8px);
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0.35s;
}

.cf-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.cf-modal-dialog {
  position: relative;
  width: min(72rem, 100%);
  max-height: calc(100vh - 4rem);
  overflow: auto;
  overflow-x: hidden;
  color: var(--cf-blue);
  background: #fff;
  transform: translateY(2rem) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cf-modal.is-open .cf-modal-dialog {
  transform: translateY(0) scale(1);
}

.cf-modal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  min-height: 26rem;
}

.cf-modal-viewer {
  position: relative;
  min-width: 0;
  min-height: 26rem;
  overflow: hidden;
  background: var(--cf-blue);
  touch-action: pan-y;
}

.cf-modal-featured {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.cf-media-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 36, 74, 0.58);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.cf-media-arrow::before {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 0.18rem solid currentColor;
  border-right: 0.18rem solid currentColor;
  content: "";
}

.cf-media-arrow.is-prev::before {
  transform: rotate(-135deg);
}

.cf-media-arrow.is-next::before {
  transform: rotate(45deg);
}

.cf-modal-viewer .cf-media-arrow::before {
  display: none;
}

.cf-media-arrow-icon {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cf-media-arrow:hover {
  color: var(--cf-blue);
  background: #fff;
}

.cf-media-arrow.is-prev {
  left: 1.1rem;
}

.cf-media-arrow.is-next {
  right: 1.1rem;
}

.cf-media-count {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 36, 74, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.cf-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 4rem;
  background: var(--cf-sand);
}

.cf-modal-copy p {
  margin: 1.25rem 0 0;
  color: rgba(3, 36, 74, 0.72);
  line-height: 1.75;
}

.cf-modal-distribution {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(3, 36, 74, 0.18);
  color: var(--cf-blue);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.65;
}

.cf-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 3.5rem;
  padding: 3.5rem 4rem 4rem;
}

.cf-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cf-modal-gallery button {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cf-sand);
  cursor: pointer;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.cf-modal-gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  pointer-events: none;
  transition: border-color 0.25s ease;
}

.cf-modal-gallery button.is-active::after {
  border-color: var(--cf-sky);
}

.cf-modal-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cf-modal-gallery button:hover img {
  transform: scale(1.045);
}

.cf-modal-services h3 {
  margin: 0 0 1.5rem;
}

.cf-modal-services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.cf-modal-services li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(3, 36, 74, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cf-modal-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--cf-sky);
}

.cf-modal-action {
  display: inline-flex;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  background: var(--cf-blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease;
}

.cf-modal-action:hover {
  transform: translateY(-2px);
}

.cf-modal-cabin-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(3, 36, 74, 0.15);
}

.cf-modal-cabin-nav button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "arrow eyebrow"
    "arrow title";
  gap: 0.05rem 1rem;
  align-items: center;
  padding: 1.5rem 4rem;
  border: 0;
  color: var(--cf-blue);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease;
}

.cf-modal-cabin-nav button + button {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow arrow"
    "title arrow";
  border-left: 1px solid rgba(3, 36, 74, 0.15);
  text-align: right;
}

.cf-modal-cabin-nav button:hover {
  background: var(--cf-sand);
}

.cf-modal-cabin-nav span {
  grid-area: arrow;
  align-self: center;
  font-size: 1.5rem;
  line-height: 1;
}

.cf-modal-cabin-nav small {
  grid-area: eyebrow;
  color: rgba(3, 36, 74, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf-modal-cabin-nav strong {
  grid-area: title;
  font-size: 0.9rem;
  font-weight: 600;
}

.location_distances {
  display: grid;
  width: min(100%, 30rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(3, 36, 74, 0.14);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 1rem 2.5rem rgba(3, 36, 74, 0.08);
  backdrop-filter: blur(7px);
}

.cf-location-distance-card {
  top: 15rem;
}

.cf-location-distance-content {
  padding: 1.2rem !important;
}

.cf-location-distance-card .location_distances {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.location_distance-item {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
  justify-items: center;
  padding: 1.1rem 0.7rem;
}

.location_distance-item + .location_distance-item {
  border-left: 1px solid rgba(3, 36, 74, 0.12);
}

.location_distance-value {
  color: var(--cf-blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.location_distance-copy {
  color: rgba(3, 36, 74, 0.62);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.cf-amenities-section {
  padding: 4.5rem 0;
  color: var(--cf-blue);
  background: #fff;
}

.cf-section-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(18rem, 1.3fr);
  gap: 0 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.cf-section-intro .cf-gallery-kicker {
  grid-column: 1;
}

.cf-section-intro h2 {
  grid-column: 1;
  margin: 0;
  white-space: nowrap;
}

.cf-section-intro > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 36rem;
  margin: 0 0 0 auto;
  color: rgba(3, 36, 74, 0.68);
  line-height: 1.75;
}

.cf-amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(3, 36, 74, 0.18);
  border-left: 1px solid rgba(3, 36, 74, 0.18);
}

.cf-amenity-card {
  position: relative;
  min-height: 16rem;
  padding: 1.5rem;
  border-right: 1px solid rgba(3, 36, 74, 0.18);
  border-bottom: 1px solid rgba(3, 36, 74, 0.18);
  background: #fff;
  transition:
    color 0.35s ease,
    background 0.35s ease;
}

.cf-amenity-card:hover {
  color: #fff;
  background: var(--cf-blue);
}

.cf-amenity-number {
  margin-bottom: 1.75rem;
  color: var(--cf-sky);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.cf-amenity-card h3 {
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
}

.cf-amenity-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cf-amenity-card li {
  color: rgba(3, 36, 74, 0.66);
  font-size: 0.88rem;
  transition: color 0.35s ease;
}

.cf-amenity-card:hover li {
  color: rgba(255, 255, 255, 0.72);
}

.cf-amenity-note {
  margin: 1.1rem 0 0;
  color: var(--cf-sky);
  font-size: 0.72rem;
}

.cf-area-experiences {
  position: relative;
  padding: clamp(2.75rem, 4vw, 4.25rem) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(106, 166, 205, 0.2),
      transparent 30%
    ),
    var(--cf-blue);
}

.cf-area-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: clamp(1.5rem, 2.25vw, 2rem);
}

.cf-area-kicker {
  margin-bottom: 0.7rem;
  color: var(--cf-sky);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cf-area-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Zt Formom", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.88;
  white-space: nowrap;
}

.cf-area-heading h2 em {
  color: var(--cf-sky);
  font-weight: inherit;
}

.cf-area-heading > p {
  max-width: 37rem;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.65;
}

.cf-area-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.cf-area-card {
  position: relative;
  display: flex;
  min-width: 0;
  grid-column: span 3;
  flex-direction: column;
  overflow: hidden;
  color: var(--cf-blue);
  background: var(--cf-sand);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1.5rem 3.5rem rgba(1, 20, 43, 0.18);
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.5s ease;
}

.cf-area-card.is-wide {
  grid-column: span 7;
}

.cf-area-card:nth-child(2) {
  grid-column: span 5;
}

.cf-area-card:hover,
.cf-area-card:focus-visible {
  transform: translateY(-0.6rem);
  box-shadow: 0 2.3rem 4.5rem rgba(1, 20, 43, 0.28);
}

.cf-area-image-wrap {
  position: relative;
  height: clamp(8.75rem, 10.75vw, 11.25rem);
  overflow: hidden;
  background: #d9d8d2;
}

.cf-area-card:nth-child(-n + 2) .cf-area-image-wrap {
  height: clamp(11.5rem, 14vw, 14.5rem);
}

.cf-area-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.94);
  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s ease;
}

.cf-area-card:hover .cf-area-image,
.cf-area-card:focus-visible .cf-area-image {
  filter: saturate(0.86) contrast(0.98);
  transform: scale(1.045);
}

.cf-area-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 36, 74, 0.58);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.cf-area-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(0.85rem, 1.15vw, 1.1rem);
}

.cf-area-meta {
  margin-bottom: 0.55rem;
  color: rgba(3, 36, 74, 0.52);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cf-area-content h3 {
  margin: 0;
  color: var(--cf-blue);
  font-family: "Zt Formom", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.cf-area-card:not(.is-wide) .cf-area-content h3 {
  font-size: clamp(1.3rem, 1.5vw, 1.55rem);
}

.cf-area-content p {
  margin: 0.5rem 0 0.75rem;
  color: rgba(3, 36, 74, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cf-area-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(3, 36, 74, 0.32);
  color: var(--cf-blue);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease;
}

.cf-area-card:hover .cf-area-link,
.cf-area-card:focus-visible .cf-area-link {
  border-color: var(--cf-blue);
}

html.w-mod-js .cf-area-experiences [data-area-reveal] {
  opacity: 0;
  transform: translateY(3rem);
}

html.w-mod-js .cf-area-experiences [data-area-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease var(--cf-area-delay, 0s),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1)
      var(--cf-area-delay, 0s),
    box-shadow 0.5s ease;
}

html.w-mod-js
  .cf-area-experiences
  .cf-area-card[data-area-reveal].is-visible:hover,
html.w-mod-js
  .cf-area-experiences
  .cf-area-card[data-area-reveal].is-visible:focus-visible {
  transform: translateY(-0.6rem);
}

.cf-area-modal-open {
  overflow: hidden;
}

.cf-area-modal {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0s linear 0.35s;
}

.cf-area-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.cf-area-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(1, 20, 43, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.cf-area-modal-panel {
  position: relative;
  display: grid;
  width: min(72rem, 94vw);
  height: min(50rem, 90dvh);
  max-height: min(50rem, 90dvh);
  grid-template-columns: minmax(0, 1.12fr) minmax(23rem, 0.88fr);
  overflow: hidden;
  color: var(--cf-blue);
  background: var(--cf-sand);
  box-shadow: 0 2.5rem 7rem rgba(0, 10, 25, 0.42);
  transform: translateY(2rem) scale(0.975);
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.cf-area-modal.is-open .cf-area-modal-panel {
  transform: translateY(0) scale(1);
}

.cf-area-modal-close {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 36, 74, 0.58);
  backdrop-filter: blur(10px);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.cf-area-modal-close:hover,
.cf-area-modal-close:focus-visible {
  background: var(--cf-blue);
  transform: rotate(90deg);
}

.cf-area-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.cf-area-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cf-area-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cf-area-modal-media {
  position: relative;
  min-height: min(44rem, 82dvh);
  overflow: hidden;
  background: #c9d3d8;
}

.cf-area-modal-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  transition:
    opacity 0.28s ease,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cf-area-modal-image.is-changing {
  opacity: 0.25;
  transform: scale(1.025);
}

.cf-area-modal-media-shade {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(1, 20, 43, 0.55));
}

.cf-area-modal-gallery-controls {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.cf-area-modal-arrow {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: inherit;
  background: rgba(3, 36, 74, 0.48);
  backdrop-filter: blur(8px);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.cf-area-modal-arrow:hover,
.cf-area-modal-arrow:focus-visible {
  color: var(--cf-blue);
  background: #fff;
  transform: scale(1.06);
}

.cf-area-modal-arrow span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.cf-area-modal-count {
  min-width: 4.25rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(3, 36, 74, 0.46);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  backdrop-filter: blur(8px);
}

.cf-area-modal-content {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(2.5rem, 4vw, 4.5rem);
}

.cf-area-modal-kicker {
  margin-bottom: 1rem;
  color: rgba(3, 36, 74, 0.52);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cf-area-modal-content h2 {
  margin: 0;
  color: var(--cf-blue);
  font-family: "Zt Formom", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.cf-area-modal-copy {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cf-area-modal-copy p {
  margin: 0;
  color: rgba(3, 36, 74, 0.7);
  font-size: 0.82rem;
  line-height: 1.7;
}

.cf-area-modal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.cf-area-modal-facts li {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(3, 36, 74, 0.15);
  border-radius: 999px;
  color: rgba(3, 36, 74, 0.72);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cf-area-modal-official {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 1rem 1.2rem;
  color: #fff;
  background: var(--cf-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.cf-area-modal-official:hover,
.cf-area-modal-official:focus-visible {
  color: var(--cf-blue);
  background: var(--cf-sky);
}

.cf-area-modal-official span:last-child {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cf-area-modal-official:hover span:last-child,
.cf-area-modal-official:focus-visible span:last-child {
  transform: translate(0.2rem, -0.2rem);
}

@media screen and (max-width: 991px) {
  .cf-area-heading {
    grid-template-columns: 1fr;
  }

  .cf-area-heading > p {
    margin-left: 0;
  }

  .cf-area-card,
  .cf-area-card.is-wide,
  .cf-area-card:nth-child(2) {
    grid-column: span 6;
  }

  .cf-area-card:nth-child(-n + 2) .cf-area-image-wrap,
  .cf-area-image-wrap {
    height: clamp(12.5rem, 31vw, 17rem);
  }

  .cf-area-modal-panel {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  }

  .cf-area-modal-media {
    min-height: min(40rem, 78dvh);
  }
}

@media screen and (max-width: 767px) {
  .cf-area-experiences {
    padding: 2.75rem 0;
  }

  .cf-area-heading {
    gap: 1.15rem;
  }

  .cf-area-heading h2 {
    font-size: clamp(1.55rem, 6.6vw, 2.6rem);
  }

  .cf-area-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cf-area-card,
  .cf-area-card.is-wide,
  .cf-area-card:nth-child(2) {
    grid-column: 1;
  }

  .cf-area-card:nth-child(-n + 2) .cf-area-image-wrap,
  .cf-area-image-wrap {
    height: 42vw;
    min-height: 9rem;
    max-height: 13rem;
  }

  .cf-area-content {
    padding: 0.9rem;
  }

  .cf-area-content h3,
  .cf-area-card:not(.is-wide) .cf-area-content h3 {
    font-size: 1.4rem;
  }

  .cf-area-modal {
    align-items: end;
    padding: 0;
  }

  .cf-area-modal-panel {
    width: 100%;
    height: auto;
    max-height: 94dvh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(14rem, 38dvh) auto;
    overflow-y: auto;
  }

  .cf-area-modal-media {
    min-height: 0;
  }

  .cf-area-modal-content {
    overflow: visible;
    padding: 1.75rem 1.5rem 2rem;
  }

  .cf-area-modal-content h2 {
    padding-right: 2rem;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .cf-area-modal-copy {
    margin-top: 1.15rem;
  }

  .cf-area-modal-facts {
    margin: 1.25rem 0 1.5rem;
  }

  .cf-area-modal-close {
    position: fixed;
  }

  .cf-area-modal-arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.w-mod-js .cf-area-experiences [data-area-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cf-area-card,
  .cf-area-image {
    transition: none;
  }
}

/* Persistent booking access in the header */
.cf-header-book-button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  min-width: 7.9rem;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  overflow: hidden;
  border: 1px solid var(--cf-sky);
  border-radius: 0.14rem;
  color: #fff;
  background: var(--cf-sky);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    min-height 0.35s ease;
}

.cf-header-book-button::before {
  position: absolute;
  z-index: -1;
  top: var(--cf-button-y, 50%);
  left: var(--cf-button-x, 50%);
  width: var(--cf-button-circle-size, 16rem);
  height: var(--cf-button-circle-size, 16rem);
  border-radius: 50%;
  opacity: 0;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%) scale(0);
  transition:
    opacity 300ms ease,
    transform 0s linear 300ms;
}

.cf-header-book-button:hover,
.cf-header-book-button:focus-visible,
.cf-header-book-button[aria-expanded="true"] {
  color: var(--cf-blue);
  border-color: #fff;
}

.cf-header-book-button:hover::before,
.cf-header-book-button:focus-visible::before,
.cf-header-book-button[aria-expanded="true"]::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0s linear,
    transform 750ms ease;
}

.navbar.is-scrolled .cf-header-book-button {
  min-height: 2.25rem;
  padding: 0.5rem 1.15rem;
}

.cf-menu-my-reservation {
  order: -1;
  margin-right: 0.35rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.cf-menu-my-reservation .button {
  min-width: 10rem;
  white-space: nowrap;
}

.cf-booking-drawer-open {
  overflow: hidden;
}

.cf-booking-drawer {
  position: fixed;
  z-index: 998;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.45s;
}

.cf-booking-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cf-booking-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  background: rgba(1, 20, 43, 0.58);
  backdrop-filter: blur(7px);
  cursor: default;
  transition: opacity 0.4s ease;
}

.cf-booking-drawer.is-open .cf-booking-drawer-backdrop {
  opacity: 1;
}

.cf-booking-drawer-panel {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(82rem, calc(100vw - 8rem));
  height: min(34rem, calc(100dvh - 6rem));
  max-height: calc(100dvh - 6rem);
  grid-template-columns: minmax(30rem, 0.96fr) minmax(0, 1.04fr);
  padding: 0;
  overflow: visible;
  color: var(--cf-blue);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0.9rem;
  opacity: 0;
  background: #faf8f4;
  box-shadow: 0 2.5rem 7rem rgba(1, 20, 43, 0.35);
  transform: translate(-50%, calc(-50% - 1.2rem)) scale(0.975);
  transform-origin: center;
  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.cf-booking-drawer.is-open .cf-booking-drawer-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cf-booking-drawer-head {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: flex-end;
  padding: 2rem;
  overflow: hidden;
  border-radius: 0.82rem 0 0 0.82rem;
  color: #fff;
  background: var(--cf-blue);
}

.cf-booking-drawer-image,
.cf-booking-drawer-image-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cf-booking-drawer-image {
  object-fit: cover;
  object-position: center 72%;
}

.cf-booking-drawer-image-shade {
  background: linear-gradient(
    180deg,
    rgba(2, 22, 48, 0.08) 12%,
    rgba(2, 22, 48, 0.88) 100%
  );
}

.cf-booking-drawer-copy {
  position: relative;
  z-index: 1;
}

.cf-booking-drawer-kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: #a8d2ed;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cf-booking-drawer-head h2 {
  max-width: 34rem;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 500;
  line-height: 0.94;
}

.cf-booking-drawer-head p {
  max-width: 16rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cf-booking-drawer-close {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  place-items: center;
  border: 1px solid rgba(3, 36, 74, 0.2);
  border-radius: 50%;
  color: var(--cf-blue);
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.3s ease;
}

.cf-booking-drawer-close:hover,
.cf-booking-drawer-close:focus-visible {
  color: #fff;
  background: var(--cf-blue);
  transform: rotate(90deg);
}

.cf-booking-modal-form {
  position: relative;
  display: grid;
  width: min(44rem, calc(100% - 4rem));
  align-self: center;
  gap: 1.2rem;
  margin: auto;
  color: var(--cf-blue);
}

.cf-booking-modal-intro {
  padding-bottom: 0.35rem;
}

.cf-booking-modal-intro > span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--cf-sky);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cf-booking-modal-intro h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 3.25vw, 3.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.cf-booking-modal-intro p {
  max-width: 29rem;
  margin: 0.7rem 0 0;
  color: rgba(3, 36, 74, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cf-booking-modal-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cf-booking-modal-date {
  position: relative;
  display: grid;
  min-height: 5.5rem;
  grid-template-columns: minmax(0, 1fr) 1.6rem;
  gap: 0.55rem 0.8rem;
  align-content: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(3, 36, 74, 0.13);
  border-radius: 0.45rem;
  color: var(--cf-blue);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.cf-booking-modal-date:hover,
.cf-booking-modal-date:focus-visible,
.cf-booking-modal-date[aria-expanded="true"] {
  border-color: var(--cf-sky);
  background: #fff;
  transform: translateY(-2px);
}

.cf-booking-modal-date strong {
  grid-column: 1;
  overflow: hidden;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cf-booking-modal-guests {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(3, 36, 74, 0.12);
  border-bottom: 1px solid rgba(3, 36, 74, 0.12);
}

.cf-booking-modal-guests .cf-booking-label {
  font-size: 0.8rem;
}

.cf-booking-modal-guests p {
  margin: 0.35rem 0 0;
  color: rgba(3, 36, 74, 0.5);
  font-size: 0.7rem;
}

.cf-booking-modal-counter {
  display: grid;
  grid-template-columns: 2.2rem 2rem 2.2rem;
  align-items: center;
  gap: 0.35rem;
}

.cf-booking-modal-counter .cf-guest-button {
  width: 2.2rem;
  height: 2.2rem;
}

.cf-booking-modal-counter strong {
  text-align: center;
}

.cf-booking-modal-submit {
  min-height: 3.75rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--cf-blue);
  border-radius: 0.25rem;
  color: #fff;
  background: var(--cf-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.cf-booking-modal-submit:hover,
.cf-booking-modal-submit:focus-visible {
  color: var(--cf-blue);
  background: var(--cf-sky);
}

.cf-booking-modal-calendar {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(47rem, calc(100vw - 4rem));
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .cf-booking-drawer-panel {
    display: block;
    width: min(70rem, calc(100vw - 3rem));
    height: min(42rem, calc(100dvh - 6rem));
    overflow-y: auto;
  }

  .cf-booking-drawer-head {
    min-height: 14rem;
    border-radius: 0.82rem 0.82rem 0 0;
  }

  .cf-booking-drawer-head h2 {
    max-width: 40rem;
  }

  .cf-booking-modal-form {
    width: calc(100% - 3rem);
    max-width: 46rem;
    margin: 4.25rem auto 2.5rem;
  }

  .cf-booking-drawer-close {
    top: 15rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .cf-booking-modal-calendar {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-height: none;
    margin: 0.75rem 0 0;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .navbar_book-actions {
    gap: 0.45rem;
  }

  .cf-header-my-reservation {
    display: none;
  }

  .cf-header-book-button {
    min-width: 6.35rem;
    min-height: 2.15rem;
    padding: 0.5rem 0.72rem;
    font-size: 0.58rem;
    letter-spacing: 0.09em;
  }

  .navbar.is-scrolled .cf-header-book-button {
    min-height: 2rem;
    padding: 0.43rem 0.65rem;
  }

  .cf-menu-actions .cf-menu-my-reservation {
    width: 100%;
    margin: 0 0 0.4rem;
    padding: 0 0 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .cf-menu-reserve-action {
    display: none;
  }

  .cf-booking-drawer-panel {
    top: 4rem;
    display: block;
    width: calc(100vw - 1rem);
    height: auto;
    max-height: calc(100dvh - 4.5rem);
    padding: 0;
    overflow-y: auto;
    border-radius: 0.8rem;
    transform: translate(-50%, -1rem) scale(0.975);
    transform-origin: top center;
  }

  .cf-booking-drawer.is-open .cf-booking-drawer-panel {
    transform: translate(-50%, 0) scale(1);
  }

  .cf-booking-drawer-head {
    min-height: 12rem;
    align-items: flex-end;
    padding: 1.35rem;
    border-radius: 0.72rem 0.72rem 0 0;
  }

  .cf-booking-drawer-head h2 {
    max-width: 21rem;
    font-size: 1.7rem;
    line-height: 0.98;
  }

  .cf-booking-drawer-head p {
    display: none;
  }

  .cf-booking-drawer-close {
    top: 12.75rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
  }

  .cf-booking-modal-form {
    width: calc(100% - 2rem);
    gap: 1rem;
    margin: 3.75rem auto 1.5rem;
  }

  .cf-booking-modal-intro h3 {
    font-size: 2.35rem;
  }

  .cf-booking-modal-intro p {
    margin-top: 0.5rem;
  }

  .cf-booking-modal-dates {
    grid-template-columns: 1fr;
  }

  .cf-booking-modal-date {
    min-height: 5.25rem;
    padding: 1rem;
  }

  .cf-booking-modal-guests {
    min-height: 4.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cf-booking-modal-calendar {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-height: none;
    margin: 0.65rem 0 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-header-book-button,
  .cf-header-book-button::before,
  .cf-booking-drawer,
  .cf-booking-drawer-backdrop,
  .cf-booking-drawer-panel {
    transition: none;
  }
}

.cf-reviews {
  padding: 7rem 0;
  background: #f7f7f7;
}

.cf-reviews-skeleton {
  display: none;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-reviews-skeleton {
  display: grid;
  grid-template-columns: minmax(12rem, 0.78fr) minmax(0, 2.75fr);
  gap: 3rem;
  align-items: center;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-reviews-layout {
  display: none;
}

.is-reviews-ready .cf-reviews-layout {
  animation: cf-reviews-reveal 0.35s ease both;
}

.cf-skeleton-shape {
  display: block;
  background: linear-gradient(
    105deg,
    #e4e7e8 18%,
    #f2f3f3 38%,
    #e4e7e8 58%
  );
  background-size: 220% 100%;
  animation: cf-skeleton-shimmer 1.25s ease-in-out infinite;
}

.cf-reviews-skeleton-summary {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cf-reviews-skeleton-kicker {
  width: 9.5rem;
  height: 0.55rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-title {
  width: 8.5rem;
  height: 2.65rem;
  margin-top: 1.1rem;
  border-radius: 0.2rem;
}

.cf-reviews-skeleton-rating {
  width: 4.5rem;
  height: 1rem;
  margin-top: 1.25rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-stars,
.cf-reviews-skeleton-card-stars {
  display: flex;
  align-items: center;
}

.cf-reviews-skeleton-stars {
  gap: 0.3rem;
  margin-top: 1.15rem;
}

.cf-reviews-skeleton-stars span {
  width: 2.45rem;
  height: 2.45rem;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 94%,
    50% 72%,
    21% 94%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.cf-reviews-skeleton-count {
  width: 7.5rem;
  height: 0.75rem;
  margin-top: 1rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-google {
  width: 6.5rem;
  height: 1.8rem;
  margin-top: 1.2rem;
  border-radius: 0.25rem;
}

.cf-reviews-skeleton-cards {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cf-reviews-skeleton-card {
  height: 20rem;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
}

.cf-reviews-skeleton-head {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 1.25rem;
  gap: 0.8rem;
  align-items: center;
}

.cf-reviews-skeleton-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
}

.cf-reviews-skeleton-name {
  width: min(7rem, 90%);
  height: 0.8rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-date {
  width: 4.5rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-source {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.cf-reviews-skeleton-card-stars {
  gap: 0.18rem;
  margin: 1.4rem 0 1.15rem;
}

.cf-reviews-skeleton-card-stars span {
  width: 1.25rem;
  height: 1.25rem;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 94%,
    50% 72%,
    21% 94%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.cf-reviews-skeleton-copy {
  width: 100%;
  height: 0.7rem;
  margin-top: 0.75rem;
  border-radius: 999px;
}

.cf-reviews-skeleton-copy.is-short {
  width: 68%;
}

@keyframes cf-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes cf-reviews-reveal {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf-reviews-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.78fr) minmax(0, 2.75fr);
  gap: 3rem;
  align-items: center;
}

.cf-reviews-summary {
  text-align: center;
}

.cf-reviews-summary h2 {
  margin: 0 0 1rem;
}

.cf-review-rating {
  margin-bottom: 0.25rem;
  color: var(--cf-blue);
  font-size: 1.1rem;
  font-weight: 600;
}

.cf-reviews-score {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--cf-gold);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.cf-review-half-star,
.cf-review-partial-star {
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--cf-gold) 0 var(--cf-star-fill, 50%),
    #d4d7da var(--cf-star-fill, 50%) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.cf-review-empty-star {
  color: #d4d7da;
}

.cf-reviews-count {
  margin: 0;
  font-size: 0.88rem;
}

.cf-google-wordmark {
  display: inline-flex;
  margin-top: 1.15rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.cf-google-wordmark span:nth-child(1),
.cf-google-wordmark span:nth-child(4) {
  color: #4285f4;
}
.cf-google-wordmark span:nth-child(2),
.cf-google-wordmark span:nth-child(6) {
  color: #ea4335;
}
.cf-google-wordmark span:nth-child(3) {
  color: #fbbc05;
}
.cf-google-wordmark span:nth-child(5) {
  color: #34a853;
}

.cf-review-carousel {
  min-width: 0;
}

.cf-review-grid {
  display: grid;
  overflow-x: auto;
  align-items: start;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 1rem;
  padding: 0.25rem 0 0.75rem;
  outline: none;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cf-review-grid::-webkit-scrollbar {
  display: none;
}

.cf-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 20rem;
  min-height: 20rem;
  padding: 1.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(3, 36, 74, 0.035);
  box-shadow: none;
  scroll-snap-align: start;
}

.cf-review-card.is-expanded {
  height: auto;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-review-rating,
html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-reviews-score,
html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-reviews-count {
  visibility: hidden;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-review-card
  > * {
  visibility: hidden;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-review-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-review-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.78) 45%,
    transparent 65%
  );
  content: "";
  transform: translateX(-100%);
  animation: cf-review-loading 1.15s ease-in-out infinite;
}

html.w-mod-js
  [data-google-reviews]:not(.is-reviews-ready)
  .cf-review-controls {
  visibility: hidden;
}

@keyframes cf-review-loading {
  to {
    transform: translateX(100%);
  }
}

.cf-review-head {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.cf-review-avatar {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--cf-sky);
  font-size: 1.2rem;
}

.cf-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-review-avatar.has-photo {
  overflow: visible;
  background: transparent;
}

.cf-review-avatar.has-photo img {
  display: block;
  object-fit: contain;
}

.cf-review-author {
  display: block;
  overflow: hidden;
  color: #111;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cf-review-date {
  color: #8c8c8c;
  font-size: 0.78rem;
}

.cf-review-google {
  font-size: 1.4rem;
  font-weight: 700;
}

.cf-review-stars {
  margin: 1.2rem 0 0.9rem;
  color: var(--cf-gold);
  font-size: 1.4rem;
  letter-spacing: -0.08em;
}

.cf-review-text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #181818;
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.cf-review-text.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.cf-review-more {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.8rem 0 0.15rem;
  border: 0;
  border-bottom: 1px solid rgba(3, 36, 74, 0.35);
  color: var(--cf-blue);
  background: transparent;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.cf-review-more:hover,
.cf-review-more:focus-visible {
  border-color: var(--cf-sky);
  color: #315f84;
}

.cf-review-controls {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.cf-review-controls[hidden] {
  display: none;
}

.cf-review-arrow {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(3, 36, 74, 0.28);
  border-radius: 50%;
  color: var(--cf-blue);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.cf-review-arrow svg {
  width: 1.05rem;
  height: 1.05rem;
}

.cf-review-arrow:hover,
.cf-review-arrow:focus-visible {
  border-color: var(--cf-blue);
  color: #fff;
  background: var(--cf-blue);
}

.cf-review-progress {
  min-width: 4.7rem;
  color: rgba(3, 36, 74, 0.62);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  html.w-mod-js
    [data-google-reviews]:not(.is-reviews-ready)
    .cf-reviews-skeleton {
    grid-template-columns: 1fr;
  }

  .cf-reviews-skeleton-summary {
    min-height: 14rem;
  }

  .cf-reviews-skeleton-cards {
    grid-auto-columns: minmax(17rem, calc((100% - 1rem) / 2));
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow: hidden;
  }

  .cf-booking-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 1rem;
  }

  .cf-booking-date-fields {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(3, 36, 74, 0.14);
  }

  .cf-booking-field:last-child {
    border-right: 0;
  }

  .cf-guest-picker {
    min-height: 3.65rem;
  }

  .cf-booking-submit {
    margin: 0.45rem;
  }

  .cf-gallery-heading,
  .cf-modal-hero,
  .cf-modal-body,
  .cf-reviews-layout,
  .cf-section-intro {
    grid-template-columns: 1fr;
  }

  .cf-gallery-heading p {
    margin-left: 0;
  }

  .cf-modal-copy {
    padding: 3rem;
  }

  .cf-modal-body {
    gap: 2.5rem;
    padding: 3rem;
  }

  .cf-review-grid {
    grid-auto-columns: minmax(17rem, calc((100% - 1rem) / 2));
    padding-bottom: 0.75rem;
  }

  .cf-section-intro > p {
    grid-column: 1;
    grid-row: auto;
    margin: 1.25rem 0 0;
  }

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

}

@media screen and (max-width: 767px) {
  .cf-reviews-skeleton-stars span {
    width: 2rem;
    height: 2rem;
  }

  .cf-reviews-skeleton-cards {
    grid-auto-columns: min(78vw, 17rem);
  }

  .navbar_book-actions {
    display: flex;
  }

  .cf-reservation-link {
    min-height: auto;
    padding: 0.2rem 0 0.32rem;
    font-size: 0.65rem;
  }

  .navbar_logo-wrap {
    gap: 0.45rem;
  }

  .cf-navbar-brand-name {
    gap: 0.3rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .cf-navbar-brand-name span:last-child {
    font-size: inherit;
    letter-spacing: inherit;
  }

  .navbar.is-scrolled .navbar_main {
    padding-top: 0.38rem !important;
    padding-bottom: 0.38rem !important;
  }

  .navbar.is-scrolled .navbar_logo {
    width: 2.15rem !important;
    height: 2.15rem !important;
  }

  .navbar.is-scrolled .cf-navbar-brand-name {
    font-size: 0.56rem;
  }

  .cf-booking-bar {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 0.35rem;
  }

  .cf-booking-field {
    min-height: 3.65rem;
    padding: 0.6rem 0.7rem;
  }

  .cf-booking-label {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .cf-booking-field strong {
    font-size: 0.9rem;
  }

  .cf-booking-calendar-icon,
  .cf-booking-calendar-svg {
    display: none;
  }

  .cf-booking-field {
    grid-template-columns: minmax(0, 1fr);
  }

  .cf-guest-picker {
    grid-template-columns: minmax(4.5rem, 1fr) 2rem 1.5rem 2rem;
    min-height: 3.2rem;
    padding: 0 0.4rem 0 0.75rem;
  }

  .cf-guest-button {
    width: 1.85rem;
    height: 1.85rem;
  }

  .cf-booking-submit {
    min-width: 7.1rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.58rem;
  }

  .cf-date-popover {
    position: absolute;
    top: auto;
    right: 0;
    bottom: calc(100% + 0.6rem);
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 12rem);
    padding: 1.1rem;
    overflow-y: auto;
  }

  .cf-calendar-months {
    grid-template-columns: 1fr;
  }

  .cf-calendar-month:nth-child(2) {
    display: none;
  }

  .cf-calendar-head strong {
    font-size: 1.1rem;
  }

  .cf-gallery-section,
  .cf-reviews,
  .cf-amenities-section {
    padding: 4.5rem 0;
  }

  .cf-gallery-groups {
    gap: 4.5rem;
  }

  .cf-gallery-index {
    justify-content: flex-start;
    margin-bottom: 3.5rem;
  }

  .cf-gallery-index span {
    display: none;
  }

  .cf-gallery-heading {
    gap: 1.25rem;
  }

  .cf-gallery-card,
  .cf-gallery-card:nth-child(n) {
    height: clamp(16rem, 72vw, 24rem);
    grid-column: span 12;
  }

  .cf-modal {
    padding: 0;
  }

  .cf-modal-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .cf-modal-hero,
  .cf-modal-viewer,
  .cf-modal-copy,
  .cf-modal-body,
  .cf-modal-gallery,
  .cf-modal-services {
    width: 100%;
    min-width: 0;
  }

  .cf-modal-close {
    position: fixed;
    top: 0.85rem;
    right: 0.85rem;
  }

  .cf-modal-viewer {
    min-height: 20rem;
  }

  .cf-modal-copy,
  .cf-modal-body {
    padding: 2rem 1.25rem;
  }

  .cf-modal-gallery,
  .cf-modal-services ul {
    grid-template-columns: 1fr;
  }

  .cf-modal-cabin-nav button {
    padding: 1.15rem 1.25rem;
  }

  .cf-modal-cabin-nav strong {
    font-size: 0.75rem;
  }

  .cf-lightbox {
    padding: 1rem;
  }

  .cf-lightbox > .cf-media-arrow {
    top: auto;
    bottom: 1.25rem;
    transform: none;
  }

  .cf-lightbox > .cf-media-arrow.is-prev {
    left: 1.25rem;
  }

  .cf-lightbox > .cf-media-arrow.is-next {
    right: 1.25rem;
  }

  .contact_fields {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact_field-wrap,
  .contact_field {
    min-width: 0;
  }

  .cf-reviews-layout {
    gap: 2.5rem;
  }

  .cf-amenities-grid {
    grid-template-columns: 1fr;
  }

  .cf-amenity-card {
    min-height: 0;
  }

  .location_distances {
    width: min(100%, 21rem);
  }

  .location_distance-item {
    padding: 0.9rem 0.4rem;
  }

  .location_distance-value {
    font-size: 1.55rem;
  }

  .location_distance-copy {
    font-size: 0.55rem;
    letter-spacing: 0.055em;
  }
}

.footer .footer_brand-name,
.menu_head .footer_brand-name {
  color: #fff;
  font-family: "Gill Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1.05rem !important;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1;
  white-space: nowrap;
}

.footer .footer_brand-lockup {
  gap: 1rem !important;
}

.footer .footer_brand-logo {
  width: 5rem !important;
}

.footer .footer_head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.75rem 3rem;
  align-items: start !important;
}

.footer .footer_head > .footer_brand-lockup {
  grid-column: 1;
  grid-row: 1;
}

.footer .footer_infos-wrap {
  display: contents !important;
}

.footer .footer_head .button-wrap {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.footer .footer_head .menu_infos {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.footer .footer_head .menu_infos,
.menu_head > .menu_infos {
  display: none !important;
}

.cf-footer-info-link {
  display: flex !important;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.cf-footer-info-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cf-footer-info-link span {
  display: grid;
  min-width: 0;
  gap: 0.22rem;
  overflow-wrap: anywhere;
}

.cf-footer-info-link small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer_info-grid,
.menu_component .footer_info-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(17rem, 1.2fr) !important;
}

.menu_component .footer_info-grid {
  grid-template-columns: minmax(10rem, 0.8fr) minmax(15rem, 1.2fr) !important;
}

.footer .footer_info-grid,
.menu_component .footer_info-grid {
  display: block !important;
}

.cf-footer-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1.18fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cf-footer-contact-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  line-height: 1.55;
  text-decoration: none;
}

.cf-footer-contact-item > span {
  display: grid;
  min-width: 0;
}

.cf-footer-contact-item a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cf-footer-contact-item:hover,
.cf-footer-contact-item a:hover {
  color: #fff;
}

.cf-footer-contact-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cf-footer-contact-icon.is-whatsapp {
  fill: currentColor;
  stroke: none;
}

.cf-footer-contact-divider {
  width: 1px;
  height: 4.25rem;
  background: rgba(255, 255, 255, 0.22);
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .cf-location-distance-card {
    top: 10.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer_head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer .footer_head > .footer_brand-lockup,
  .footer .footer_head .button-wrap,
  .footer .footer_head .menu_infos {
    grid-column: 1;
  }

  .footer .footer_head > .footer_brand-lockup {
    grid-row: 1;
  }

  .footer .footer_head .button-wrap {
    grid-row: 2;
    justify-self: start;
  }

  .footer .footer_head .menu_infos {
    grid-row: 3;
    justify-self: stretch;
  }

  .footer .footer_brand-logo {
    width: 4rem !important;
  }

  .footer .footer_brand-name,
  .menu_head .footer_brand-name {
    font-size: 0.8rem !important;
    letter-spacing: 0.14em;
  }

  .footer .footer_info-grid,
  .menu_component .footer_info-grid {
    grid-template-columns: 1fr !important;
  }

  .cf-location-distance-card {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1.25rem;
  }

  .cf-footer-contact-panel {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .cf-footer-contact-divider {
    width: 100%;
    height: 1px;
  }
}

@media not all {
/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(106, 166, 205, 0.2),
      transparent 28rem
    ),
    linear-gradient(145deg, #042b57 0%, #021a36 58%, #011329 100%) !important;
}

.footer::before {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer::after {
  position: absolute;
  top: -4rem;
  right: -2rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer > .padding-global {
  position: relative;
  z-index: 1;
}

.footer .container-medium {
  width: 100%;
  max-width: 88rem !important;
}

.footer .footer_component {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  padding: clamp(4rem, 7vw, 7rem) 0 1.4rem !important;
}

.footer .footer_main {
  display: grid !important;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(30rem, 1.35fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: start;
}

.footer .footer_head {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 2.5rem;
  padding: 0 !important;
  border: 0 !important;
}

.footer .footer_brand-lockup {
  gap: 1.15rem !important;
}

.footer .footer_brand-logo {
  width: clamp(4.6rem, 6vw, 6.5rem) !important;
}

.footer .footer_brand-name {
  max-width: 10rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem) !important;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  white-space: normal;
}

.footer .footer_infos-wrap {
  display: grid !important;
  width: 100%;
  gap: 1.5rem;
}

.footer .menu_infos {
  display: grid !important;
  width: 100%;
  gap: 0.75rem;
}

.footer .menu_info {
  display: grid !important;
  width: 100%;
  grid-template-columns: 1.3rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer .menu_info:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-2px);
}

.footer .menu_info-icon {
  width: 1.15rem;
  margin-top: 0.15rem;
}

.footer .menu_info .paragraph {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer .menu_info-divider {
  display: none;
}

.footer .button-wrap {
  justify-self: start;
}

.footer .footer_links-simple {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) !important;
  gap: clamp(2.5rem, 5vw, 5rem) !important;
  width: 100%;
  padding: 0 !important;
  border: 0 !important;
}

.footer .menu_links-head {
  margin-bottom: 1.25rem;
  color: var(--cf-sky);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer .footer_sections-grid,
.footer .footer_info-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.footer .footer_simple-link {
  position: relative;
  padding: 0.85rem 1.4rem 0.85rem 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.13) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.82rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease !important;
}

.footer .footer_simple-link::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  color: rgba(255, 255, 255, 0.4);
  content: "↗";
  font-size: 0.85rem;
  transform: translateY(-50%);
}

.footer .footer_simple-link:hover {
  padding-left: 0.35rem !important;
  color: #fff !important;
  opacity: 1 !important;
}

.footer .footer_legal {
  margin-top: clamp(3.5rem, 6vw, 6rem);
  padding: 1.35rem 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer .menu_copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 991px) {
  .footer .footer_main {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .footer .footer_head {
    display: grid !important;
    grid-template-columns: minmax(14rem, 0.8fr) minmax(18rem, 1.2fr);
  }

  .footer .footer_brand-lockup {
    align-self: start;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer_component {
    padding-top: 4rem !important;
  }

  .footer .footer_head {
    display: flex !important;
    gap: 2rem;
  }

  .footer .footer_links-simple {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .footer .footer_brand-name {
    max-width: none;
    white-space: nowrap;
  }
}

/* Footer estructural */
.footer[data-layout-ready="true"] {
  background: #17445b !important;
}

.footer[data-layout-ready="true"]::before,
.footer[data-layout-ready="true"]::after {
  display: none;
}

.footer[data-layout-ready="true"] .footer_component {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 0 !important;
}

.footer[data-layout-ready="true"] .footer_main {
  display: grid !important;
  grid-template-columns:
    minmax(7.5rem, 0.75fr)
    minmax(8.5rem, 0.8fr)
    minmax(13rem, 1.15fr)
    minmax(20rem, 1.65fr);
  gap: clamp(2rem, 4vw, 5rem) !important;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.footer[data-layout-ready="true"] .footer_links-simple {
  display: contents !important;
}

.footer[data-layout-ready="true"]
  .footer_links-simple
  .footer_simple-group:first-child {
  grid-column: 1;
  grid-row: 1;
}

.footer[data-layout-ready="true"]
  .footer_links-simple
  .footer_simple-group:last-child {
  grid-column: 2;
  grid-row: 1;
}

.footer[data-layout-ready="true"] .footer_head {
  display: flex !important;
  grid-column: 3;
  grid-row: 1;
  flex-direction: column;
  gap: 1.25rem !important;
}

.footer[data-layout-ready="true"] .footer_head > .footer_brand-lockup,
.footer[data-layout-ready="true"] .footer_head .button-wrap {
  display: none !important;
}

.cf-footer-heading,
.footer[data-layout-ready="true"] .menu_links-head {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer[data-layout-ready="true"] .footer_infos-wrap {
  display: block !important;
}

.footer[data-layout-ready="true"] .menu_infos {
  gap: 1rem !important;
}

.footer[data-layout-ready="true"] .menu_info {
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  transform: none !important;
}

.footer[data-layout-ready="true"] .menu_info .paragraph {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.footer[data-layout-ready="true"] .menu_info-icon {
  width: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.footer[data-layout-ready="true"] .footer_sections-grid,
.footer[data-layout-ready="true"] .footer_info-grid {
  display: grid;
  gap: 0.8rem !important;
}

.footer[data-layout-ready="true"] .footer_simple-link {
  padding: 0 !important;
  border: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer[data-layout-ready="true"] .footer_simple-link::after {
  display: none;
}

.footer[data-layout-ready="true"] .footer_simple-link:hover {
  padding-left: 0.25rem !important;
  color: #fff !important;
}

.cf-footer-promo {
  grid-column: 4;
  grid-row: 1;
}

.cf-footer-promo h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.cf-footer-promo p {
  max-width: 29rem;
  margin: 1.35rem 0 2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.65;
}

.cf-footer-promo a {
  display: flex;
  max-width: 31rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
}

.cf-footer-promo a span {
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.cf-footer-promo a:hover span {
  transform: translateX(0.3rem);
}

.footer[data-layout-ready="true"] .footer_legal {
  display: flex !important;
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 1.5rem 0 !important;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.cf-footer-bottom-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
}

.cf-footer-bottom-brand img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
}

.cf-footer-bottom-brand span {
  font-family: "Gill Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.footer[data-layout-ready="true"] .menu_legal-wrap {
  margin-left: auto;
}

@media screen and (max-width: 1100px) {
  .footer[data-layout-ready="true"] .footer_main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cf-footer-promo {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 38rem;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer[data-layout-ready="true"] .footer_main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.25rem 2rem !important;
  }

  .footer[data-layout-ready="true"] .footer_head {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .cf-footer-promo {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
  }

  .footer[data-layout-ready="true"] .footer_legal {
    min-height: 7rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .footer[data-layout-ready="true"] .menu_legal-wrap {
    margin-left: 0;
  }

  .cf-footer-bottom-brand img {
    width: 3rem;
    height: 3rem;
  }

  .cf-footer-bottom-brand span {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar_main,
  .navbar_logo,
  .navbar > .padding-global.hide-tablet,
  .footer .menu_info,
  .footer .footer_simple-link,
  .cf-gallery-card img,
  .cf-modal,
  .cf-modal-dialog,
  .cf-lightbox,
  .cf-lightbox img {
    transition: none;
  }

  .cf-skeleton-shape,
  .is-reviews-ready .cf-reviews-layout {
    animation: none;
  }
}

/* Navegación estable y flechas del slider centradas ópticamente. */
.navbar_link::after {
  display: none !important;
}

.navbar_link .navbar_link-line {
  position: absolute;
  right: auto;
  bottom: 0;
  left: var(--_sizes---fixed--1-5rem);
  display: block !important;
  width: 0 !important;
  height: 2px !important;
  background-color: currentColor !important;
  opacity: 1 !important;
  transform: none !important;
  transition: width 0.32s ease !important;
}

.navbar_link:hover .navbar_link-line,
.navbar_link:focus-visible .navbar_link-line,
.navbar_link.w--current .navbar_link-line {
  width: calc(100% - (var(--_sizes---fixed--1-5rem) * 2)) !important;
}

.slider_arrow {
  padding: 0 !important;
}

.slider_arrow-icon {
  display: flex !important;
  width: 0.8rem !important;
  height: 1.12rem !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
}

.slider_arrow-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.w-slider-arrow-left .slider_arrow-icon {
  transform: translateX(-0.1rem);
}

.w-slider-arrow-right .slider_arrow-icon {
  transform: translateX(0.1rem);
}

.cf-copyright {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap !important;
  gap: 0.35rem 1rem;
}

.cf-copyright a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.cf-copyright a:hover {
  color: #fff;
}

.cf-legal-wrap {
  width: auto !important;
  margin: 0 !important;
}

.footer .footer_legal .cf-legal-wrap {
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
}

.footer_sections-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.menu_component .menu_links-simple {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 2.5rem !important;
}

.menu_component .footer_simple-group,
.menu_component .footer_info-grid,
.menu_component .cf-footer-contact-panel {
  width: 100%;
}

.menu_component .cf-footer-contact-panel {
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1.15fr);
}

.section_home-gallery .home-gallery_img,
.section_home-gallery .home-gallery_bg-img {
  filter: saturate(0.78) contrast(0.94);
}

.section_home-gallery .cf-gallery-caption {
  align-items: center !important;
  flex-direction: row !important;
  gap: 1rem;
}

.section_home-gallery .cf-gallery-caption .home-gallery_head {
  max-width: none !important;
}

.section_home-gallery .cf-gallery-caption .home-gallery_label {
  width: auto;
  max-width: 10rem;
  padding-top: 0;
  border-top: 0;
  line-height: 1.4;
  text-align: right;
}

.section_home-gallery .home-gallery_block {
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.1);
}

.section_home-gallery .home-gallery_content {
  min-height: 4.25rem;
}

.section_home-gallery .home-gallery_head {
  max-width: none;
}

.section_home-gallery .heading-style-h6 {
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  white-space: nowrap;
}

.section_home-gallery .home-gallery_block._2 .home-gallery_content {
  gap: clamp(0.5rem, 1vw, 0.85rem);
}

.section_home-gallery .home-gallery_block._2 .home-gallery_head {
  flex: 1 1 auto;
  min-width: 0;
}

.section_home-gallery .cf-gallery-cta {
  flex: 0 0 auto;
}

.section_home-gallery .cf-gallery-cta .button {
  min-width: 0;
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .section_home-gallery .heading-style-h6 {
    font-size: clamp(1.3rem, 3vw, 1.55rem);
  }

  .section_home-gallery .cf-gallery-cta .button {
    padding: 0.72rem 1rem;
    font-size: 0.75rem;
  }
}

#complejo > .padding-section-medium,
#servicios > .padding-section-large {
  padding-top: 5.25rem;
}

.cf-menu-is-open,
.cf-lookup-menu-open {
  overflow: hidden;
}

.cf-menu-is-open .navbar_book-actions,
.cf-lookup-menu-open .navbar_book-actions {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
}

.menu_head .cf-menu-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.menu_head .cf-menu-actions .button-wrap {
  margin: 0;
}

.menu_head .cf-menu-actions {
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.menu_head .cf-menu-actions .button {
  min-width: 0;
  min-height: 3.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.menu_head .cf-menu-actions .cf-menu-my-reservation {
  margin-right: 0;
  padding-right: 0;
  border: 0.0625rem solid var(--white--50);
}

.menu_head .cf-menu-actions .cf-menu-my-reservation .button {
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .menu_head .cf-menu-actions {
    width: 100%;
  }

  .menu_head .cf-menu-actions .cf-menu-my-reservation {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0.0625rem solid var(--white--50);
  }

  .menu_head .cf-menu-actions .cf-menu-my-reservation .button {
    width: 100%;
  }
}

.cf-lookup-navbar .navbar_link-texts {
  position: relative;
  display: block;
  height: 1.375em;
  overflow: hidden;
}

.cf-lookup-navbar .navbar_link-text {
  display: block;
  transition: transform 0.32s ease;
}

.cf-lookup-navbar .navbar_link-text._2 {
  position: absolute;
  top: 100%;
  left: 0;
}

.cf-lookup-navbar .navbar_link:hover .navbar_link-text,
.cf-lookup-navbar .navbar_link:focus-visible .navbar_link-text {
  transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
  .cf-copyright {
    align-items: flex-start;
    flex-flow: column nowrap !important;
  }
}

/* Reservation lookup placeholder */
.cf-lookup-page {
  --cf-lookup-header-height: 7.5rem;
  color: var(--cf-blue);
  background: var(--cf-sand);
}

.cf-lookup-page .navbar {
  background: var(--cf-blue);
}

.cf-lookup-navbar {
  position: absolute !important;
  background: rgba(3, 36, 74, 0.56);
  box-shadow: none;
  backdrop-filter: none;
}

.cf-lookup-navbar.is-scrolled {
  position: fixed !important;
  background: rgba(3, 36, 74, 0.94);
  box-shadow: 0 0.75rem 2.5rem rgba(2, 20, 43, 0.18);
  backdrop-filter: blur(14px);
}

.cf-lookup-navbar .navbar_logo-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: row !important;
}

.cf-lookup-navbar .navbar_logo {
  width: 3.4rem !important;
  height: 3.4rem !important;
  object-fit: contain;
}

.cf-lookup-menu-toggle {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.cf-lookup-menu {
  position: fixed;
  z-index: 998;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 8rem 2rem 3rem;
  color: #fff;
  opacity: 0;
  background: rgba(3, 36, 74, 0.98);
  transform: translateY(-1.5rem);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}

.cf-lookup-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.cf-lookup-menu-inner {
  width: min(42rem, 100%);
}

.cf-lookup-menu-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: -1.4rem 0 1.5rem;
}

.cf-lookup-menu-action {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-width: 8rem;
  padding: 0.9rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.cf-lookup-menu-action::before {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width 0.45s ease,
    height 0.45s ease;
}

.cf-lookup-menu-action:hover {
  color: var(--cf-blue);
  border-color: #fff;
}

.cf-lookup-menu-action:hover::before {
  width: 14rem;
  height: 14rem;
}

.cf-lookup-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cf-lookup-menu nav a {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  text-decoration: none;
}

.cf-lookup-menu-contact {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.cf-lookup-menu-contact a {
  color: inherit;
  text-decoration: none;
}

.cf-lookup-menu-open {
  overflow: hidden;
}

.cf-lookup-main {
  padding-top: var(--cf-lookup-header-height);
}

.cf-lookup-hero {
  display: grid;
  min-height: calc(100svh - var(--cf-lookup-header-height));
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(28rem, 0.92fr);
}

.cf-lookup-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
}

.cf-lookup-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.03) brightness(1.08) sepia(0.015);
}

.cf-lookup-content {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 42rem;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.cf-lookup-content h1 {
  max-width: 9ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 5.5vw, 5.75rem);
  font-weight: 500;
  line-height: 0.9;
}

.cf-lookup-content h1 em {
  color: var(--cf-sky);
  font-weight: inherit;
}

.cf-lookup-content > p {
  width: 100%;
  min-width: 0;
  max-width: 32rem;
  margin: 1.25rem 0 1.75rem;
  color: rgba(3, 36, 74, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.cf-lookup-form {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 34rem;
  gap: 0.5rem;
}

.cf-lookup-form label {
  margin-top: 0.4rem;
  color: rgba(3, 36, 74, 0.62);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cf-lookup-form input {
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(3, 36, 74, 0.28);
  outline: 0;
  color: var(--cf-blue);
  background: transparent;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.cf-lookup-form input:focus {
  border-color: var(--cf-sky);
}

.cf-lookup-form button {
  width: fit-content;
  margin-top: 1rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--cf-blue);
  border-radius: 999px;
  color: #fff;
  background: var(--cf-blue);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: default;
}

.cf-lookup-form small {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 28rem;
  color: rgba(3, 36, 74, 0.48);
  font-size: 0.68rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.cf-lookup-footer {
  margin-top: 0;
}

.cf-lookup-footer .footer_brand-lockup {
  display: flex !important;
  align-items: center;
}

.cf-lookup-footer .footer_brand-logo {
  display: block;
  width: 5rem;
  height: auto;
  object-fit: contain;
}

.cf-lookup-footer .footer_brand-name {
  display: block;
  white-space: nowrap;
}

.cf-lookup-footer .footer_links-simple {
  display: grid !important;
  width: 100%;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) !important;
  gap: 5rem !important;
}

.cf-lookup-footer .footer_simple-grid {
  display: grid;
  gap: 0 2rem;
}

.cf-lookup-footer .footer_sections-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cf-lookup-footer .footer_simple-link {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.cf-lookup-footer .footer_simple-link:hover {
  opacity: 0.65;
}

.cf-lookup-footer .button_bg-circle {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}

.cf-lookup-footer .button-wrap:hover .button_bg-circle,
.cf-lookup-footer .button-wrap:focus-within .button_bg-circle {
  transform: scale(1) !important;
}

@media screen and (max-width: 991px) {
  .cf-lookup-page {
    --cf-lookup-header-height: 3.75rem;
  }

  .cf-lookup-footer .footer_links-simple {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .cf-lookup-main {
    padding-top: var(--cf-lookup-header-height);
  }

  .cf-lookup-hero {
    min-height: calc(100svh - var(--cf-lookup-header-height));
    grid-template-columns: 1fr;
    grid-template-rows: minmax(12rem, 30svh) auto;
  }

  .cf-lookup-visual {
    min-height: 0;
  }

  .cf-lookup-content {
    max-width: none;
    padding: 2rem clamp(1.5rem, 7vw, 4rem) 2.75rem;
  }

  .cf-lookup-content h1 {
    font-size: clamp(3.4rem, 8vw, 4.75rem);
  }

  .cf-lookup-content > p {
    margin: 0.9rem 0 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .menu_component .menu_links-simple {
    gap: 2rem !important;
  }

  .menu_component .cf-footer-contact-panel {
    grid-template-columns: 1fr;
  }

  .cf-lookup-visual {
    min-height: 0;
  }

  .cf-lookup-content h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .cf-lookup-content {
    padding: 1.5rem 1.5rem 2rem;
  }

  .cf-lookup-content > p {
    margin: 0.75rem 0 1rem;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .cf-lookup-form {
    gap: 0.35rem;
  }

  .cf-lookup-form label {
    margin-top: 0.25rem;
  }

  .cf-lookup-form input {
    min-height: 2.75rem;
  }

  .cf-lookup-form button {
    margin-top: 0.75rem;
  }

  .cf-lookup-menu nav {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 992px) and (max-height: 700px) {
  .cf-lookup-content {
    padding: 1.75rem clamp(2.5rem, 4vw, 4rem);
  }

  .cf-lookup-content h1 {
    font-size: clamp(3.25rem, 5vw, 5rem);
  }

  .cf-lookup-content > p {
    margin: 0.8rem 0 1.1rem;
    line-height: 1.5;
  }

  .cf-lookup-form {
    gap: 0.35rem;
  }

  .cf-lookup-form label {
    margin-top: 0.2rem;
  }

  .cf-lookup-form input {
    min-height: 2.65rem;
    padding: 0.4rem 0;
  }

  .cf-lookup-form button {
    margin-top: 0.65rem;
  }
}

/* 2026 visual refinement: compact calls to action, editorial amenities,
   consistent photography, clearer interactions and measured section rhythm. */

/* Composición editorial del CTA con fotografía apaisada. */
.section_cta .cta_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center bottom;
}

/* Amenities as a continuous editorial list instead of a card grid */
.cf-amenities-section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    linear-gradient(180deg, #fff 0%, rgba(245, 241, 235, 0.42) 100%);
}

.cf-amenities-list {
  border-top: 1px solid rgba(3, 36, 74, 0.22);
}

.cf-amenity-row {
  position: relative;
  display: flex;
  min-height: 6.7rem;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  padding: 1.3rem clamp(0.25rem, 1vw, 1rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(3, 36, 74, 0.18);
  isolation: isolate;
  transition:
    color 0.38s ease,
    padding 0.38s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cf-amenity-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--cf-blue);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.cf-amenity-row:hover,
.cf-amenity-row:focus-within {
  padding-right: clamp(0.75rem, 1.5vw, 1.5rem);
  padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
  color: #fff;
}

.cf-amenity-row:hover::before,
.cf-amenity-row:focus-within::before {
  transform: scaleY(1);
}

.cf-amenity-row .cf-amenity-number {
  width: 2.5rem;
  flex: none;
  margin: 0;
  color: var(--cf-sky);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.cf-amenity-row h3 {
  width: clamp(10rem, 20vw, 16rem);
  flex: none;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.cf-amenity-row p {
  flex: 1;
  margin: 0;
  color: rgba(3, 36, 74, 0.66);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  line-height: 1.65;
  transition: color 0.35s ease;
}

.cf-amenity-row:hover p,
.cf-amenity-row:focus-within p {
  color: rgba(255, 255, 255, 0.76);
}

.cf-amenity-row p small {
  display: block;
  margin-top: 0.3rem;
  color: var(--cf-sky);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cf-amenity-row-mark {
  width: 2.5rem;
  flex: none;
  color: var(--cf-sky);
  font-size: 1.4rem;
  text-align: right;
  transform: translateX(-0.5rem);
  transition: transform 0.35s ease;
}

.cf-amenity-row:hover .cf-amenity-row-mark {
  transform: translateX(0);
}

/* A restrained warm coastal treatment shared by the site's photography */
.home-header_img,
.home-about_image,
.home-about_2nd-img,
.rooms-list_image,
.exp-header_img,
.content-block_img:not([alt="sand background"]),
.cta_image,
.cf-gallery-card img,
.cf-area-image,
.cf-area-modal img,
.cf-modal-viewer img,
.cf-modal-gallery img {
  filter: saturate(0.93) contrast(0.96) brightness(1.035) sepia(0.025);
}

.section_home-gallery .home-gallery_img,
.section_home-gallery .home-gallery_bg-img {
  filter: saturate(0.88) contrast(0.96) brightness(1.035) sepia(0.025);
}

/* Clear affordance for every clickable cabin */
.cf-cabin-trigger {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.section_home-stays .cf-cabin-trigger {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.cf-cabin-trigger:focus-visible {
  outline: 2px solid var(--cf-sky);
  outline-offset: 0.35rem;
}

.cf-cabin-trigger .stays_image-wrap {
  position: relative;
  isolation: isolate;
}

.section_home-stays .cf-cabin-trigger .stays_block-in {
  width: 100%;
}

.cf-bed-icon {
  color: #5f9bc6;
  fill: currentColor;
  stroke: none;
}

.stays_info > div {
  white-space: nowrap;
}

.cf-cabin-trigger .stays_image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(1, 20, 43, 0.52));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cf-cabin-trigger .rooms-list_image {
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.45s ease;
}

.cf-cabin-affordance {
  position: absolute;
  z-index: 2;
  right: clamp(0.9rem, 2vw, 1.4rem);
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.48rem 0.62rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  opacity: 0;
  background: rgba(3, 36, 74, 0.82);
  backdrop-filter: blur(10px);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(0.65rem);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1),
    background-color 0.3s ease;
}

.cf-cabin-affordance-arrow {
  align-self: flex-start;
  width: auto;
  height: auto;
  margin-top: -0.18rem;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.48rem;
  line-height: 1;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.cf-cabin-trigger:hover .cf-cabin-affordance-arrow,
.cf-cabin-trigger:focus-visible .cf-cabin-affordance-arrow {
  color: #fff;
  background: transparent;
  transform: translate(0.08rem, -0.08rem);
}

.cf-cabin-trigger:hover .rooms-list_image,
.cf-cabin-trigger:focus-visible .rooms-list_image {
  transform: scale(1.035);
}

.cf-cabin-trigger:hover .stays_image-wrap::before,
.cf-cabin-trigger:focus-visible .stays_image-wrap::before {
  opacity: 1;
}

.cf-cabin-trigger:hover .cf-cabin-affordance,
.cf-cabin-trigger:focus-visible .cf-cabin-affordance {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery navigation: category counts, current section and progress */
.cf-gallery-index-wrap {
  position: sticky;
  z-index: 20;
  top: 4.4rem;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  margin: 0 auto 5rem;
  padding: 0.32rem 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(3, 36, 74, 0.12);
  border-radius: 1.2rem;
  background: rgba(250, 248, 245, 0.96);
  box-shadow:
    0 0.8rem 2.5rem rgba(3, 36, 74, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: blur(14px);
}

.cf-gallery-index {
  position: static;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.cf-gallery-index > span,
.cf-gallery-index > a {
  padding: 0.48rem 0.88rem;
}

.cf-gallery-index > a {
  display: grid;
  gap: 0.08rem;
  line-height: 1.1;
}

.cf-gallery-index > a::after {
  color: rgba(3, 36, 74, 0.46);
  content: attr(data-count);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: color 0.25s ease;
}

.cf-gallery-index > a:hover,
.cf-gallery-index > a.is-active {
  color: #fff;
  background: var(--cf-blue);
}

.cf-gallery-index > a:hover::after,
.cf-gallery-index > a.is-active::after {
  color: rgba(255, 255, 255, 0.68);
}

/* Deliberate vertical rhythm on the homepage */
#cabanas > .padding-section-large {
  padding: clamp(5.5rem, 7vw, 7.5rem) 0 0;
}

#cabanas > .padding-section-medium,
#complejo > .padding-section-medium,
#servicios > .padding-section-large,
#servicios > .padding-section-medium {
  padding: clamp(5rem, 6.5vw, 7rem) 0 0;
}

.section_home-gallery > .padding-section-small:first-child,
.section_home-gallery > .padding-section-small:last-child {
  padding: clamp(4.5rem, 6vw, 6rem) 0 0;
}

#resenas {
  padding-top: clamp(5rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 7vw, 7rem);
}

.main-wrapper > .spacer-large {
  height: clamp(4.5rem, 6vw, 6rem);
}

@media (hover: none) {
  .cf-cabin-trigger .stays_image-wrap::before {
    opacity: 0.78;
  }

  .cf-cabin-affordance {
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 991px) {
  .cf-amenity-row h3 {
    width: clamp(9rem, 24vw, 13rem);
  }
}

@media screen and (max-width: 767px) {
  .cf-hero-copy {
    top: 45%;
    left: 1.5rem;
  }

  .cf-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .cf-hero-copy p {
    margin-top: 0.65rem;
    font-size: 0.6rem;
  }

  .section_cta .cta_image {
    aspect-ratio: 16 / 9;
    object-position: center bottom;
  }

  .cf-amenities-section {
    padding: 4.5rem 0;
  }

  .cf-amenity-row {
    display: grid;
    min-height: 0;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.55rem 0.75rem;
    padding: 1.4rem 0.35rem;
  }

  .cf-amenity-row h3 {
    width: auto;
    font-size: 1.75rem;
  }

  .cf-amenity-row p {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .cf-amenity-row-mark {
    width: auto;
    grid-column: 3;
    grid-row: 1;
  }

  .cf-cabin-affordance {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.45rem 0.58rem;
    font-size: 0.5rem;
  }

  .cf-cabin-affordance-arrow {
    width: auto;
    height: auto;
    font-size: 0.42rem;
  }

  .cf-gallery-index-wrap {
    top: 3.65rem;
    width: calc(100vw - 2rem);
    margin-bottom: 3.5rem;
  }

  .cf-gallery-index {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .cf-gallery-index > a {
    padding: 0.48rem 0.75rem;
  }

}

@media screen and (max-width: 479px) {
  .section_home-stays .cf-cabin-trigger {
    width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-amenity-row,
  .cf-amenity-row::before,
  .cf-amenity-row-mark,
  .cf-cabin-trigger .rooms-list_image,
  .cf-cabin-affordance,
  .cf-gallery-index > a {
    transition: none;
  }
}

/* Final mobile composition: preserve all booking actions without crowding content */
@media screen and (max-width: 767px) {
  .navbar_component {
    justify-content: flex-start !important;
    column-gap: 0.65rem;
  }

  .navbar_logo-wrap {
    min-width: 0;
  }

  .navbar_book-actions {
    flex: none;
    margin-left: auto;
  }

  .navbar_menu-wrap {
    flex: none;
  }

  .cf-header-book-button {
    min-width: 5.55rem;
    padding-right: 0.6rem;
    padding-left: 0.6rem;
  }

  .cf-booking-bar {
    display: grid;
    bottom: max(6rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
  }

  .section_home-gallery .home-gallery_block._2 .home-gallery_content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0.9rem;
    text-align: center;
  }

  .section_home-gallery .home-gallery_block._2 .home-gallery_head,
  .section_home-gallery .home-gallery_block._2 .cf-gallery-cta {
    justify-self: center;
  }

  .cf-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .cf-area-card,
  .cf-area-card.is-wide,
  .cf-area-card:nth-child(2) {
    grid-column: span 1;
  }

  .cf-area-card:nth-child(-n + 2) .cf-area-image-wrap {
    height: clamp(9rem, 40vw, 11rem);
    min-height: 0;
  }

  .cf-area-image-wrap {
    height: clamp(7.5rem, 34vw, 9.5rem);
    min-height: 0;
  }

  .cf-area-content {
    padding: 0.78rem;
  }

  .cf-area-content h3,
  .cf-area-card:not(.is-wide) .cf-area-content h3 {
    font-size: clamp(1.08rem, 4.8vw, 1.3rem);
  }

  .cf-area-content p {
    margin-top: 0.4rem;
    font-size: 0.67rem;
    line-height: 1.4;
  }

  .cf-area-meta,
  .cf-area-link {
    font-size: 0.52rem;
  }

  .cf-area-number {
    top: 0.65rem;
    right: 0.65rem;
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.56rem;
  }

  .cf-review-carousel {
    position: relative;
  }

  .cf-review-controls {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -1.15rem;
    left: -1.15rem;
    min-height: 0;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .cf-review-progress {
    display: none;
  }

  .cf-review-arrow {
    width: 2.65rem;
    height: 2.65rem;
    border-color: rgba(3, 36, 74, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0.65rem 1.6rem rgba(3, 36, 74, 0.16);
    pointer-events: auto;
    touch-action: manipulation;
  }

  .section_location .location_component {
    height: 40rem;
  }

  .section_location .location_img-wrap,
  .section_location .location_map {
    height: 40rem !important;
    min-height: 40rem !important;
  }

  .section_location .location_block:not(.cf-location-distance-card),
  .section_location .cf-location-distance-card {
    position: absolute;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: none;
    margin: 0;
  }

  .section_location .location_block:not(.cf-location-distance-card) {
    top: auto;
    bottom: 13rem;
  }

  .section_location .cf-location-distance-card {
    top: auto;
    bottom: 1rem;
  }

  .cf-booking-drawer-panel {
    top: 50%;
    display: grid;
    width: calc(100vw - 1rem);
    height: min(36rem, calc(100svh - 1rem));
    max-height: calc(100svh - 1rem);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 8.5rem auto;
    overflow: hidden;
    transform: translate(-50%, calc(-50% - 1rem)) scale(0.975);
    transform-origin: center;
  }

  .cf-booking-drawer.is-open .cf-booking-drawer-panel {
    transform: translate(-50%, -50%) scale(1);
  }

  .cf-booking-drawer-head {
    min-height: 0;
    padding: 1rem 1.1rem;
  }

  .cf-booking-drawer-head h2 {
    max-width: 19rem;
    font-size: 1.35rem;
  }

  .cf-booking-drawer-close {
    top: 9.1rem;
    right: 0.85rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .cf-booking-modal-form {
    width: calc(100% - 1.5rem);
    gap: 0.6rem;
    margin: 2.9rem auto 0.75rem;
  }

  .cf-booking-modal-intro {
    padding: 0;
  }

  .cf-booking-modal-intro h3 {
    font-size: 1.8rem;
  }

  .cf-booking-modal-intro p {
    margin-top: 0.3rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .cf-booking-modal-dates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .cf-booking-modal-date {
    min-height: 4rem;
    padding: 0.65rem 0.7rem;
  }

  .cf-booking-modal-date strong {
    font-size: 1rem;
  }

  .cf-booking-modal-date .cf-booking-calendar-svg {
    display: none;
  }

  .cf-booking-modal-guests {
    min-height: 3.5rem;
    padding: 0.55rem 0.75rem;
  }

  .cf-booking-modal-guests .cf-booking-label {
    font-size: 0.7rem;
  }

  .cf-booking-modal-counter {
    grid-template-columns: 2rem 1.6rem 2rem;
  }

  .cf-booking-modal-counter .cf-guest-button {
    width: 2rem;
    height: 2rem;
  }

  .cf-booking-modal-submit {
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  .cf-booking-modal-calendar {
    position: fixed;
    z-index: 20;
    top: 3.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    width: auto;
    max-height: none;
    margin: 0;
    overflow-y: auto;
    transform: none;
  }

  .menu_head .cf-menu-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .menu_head .cf-menu-actions .button-wrap,
  .menu_head .cf-menu-actions .cf-menu-my-reservation,
  .menu_head .cf-menu-actions .cf-menu-reserve-action {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0.0625rem solid var(--white--50);
  }

  .menu_head .cf-menu-actions .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 0.45rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

@media screen and (max-width: 370px) {
  .navbar_component {
    column-gap: 0.45rem;
  }

  .cf-navbar-brand-name {
    font-size: 0.54rem;
  }

  .cf-header-book-button {
    min-width: 5rem;
    font-size: 0.52rem;
  }
}

/* Mobile polish: iPhone-sized viewports and Safari's persistent browser chrome */
@media screen and (max-width: 767px) {
  .section_home-header {
    height: 100svh !important;
    min-height: 40rem;
  }

  .cf-booking-bar {
    display: grid;
    bottom: max(6rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
  }

  .cf-hero-copy {
    top: 55%;
    right: 1.5rem;
    left: 1.5rem;
    width: auto;
    text-align: center;
  }

  .cf-hero-copy h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.55rem);
  }

  .cf-hero-copy p {
    margin-right: 0;
    margin-left: 0;
  }

  .home-about_component {
    gap: 3rem;
  }

  .home-about_content .spacer-medium:last-of-type {
    display: none;
  }

  /* The whole cabin card remains tappable; no redundant label is needed. */
  .cf-cabin-affordance {
    display: none !important;
  }

  .section_home-stays .stays_overflow {
    overflow: visible !important;
  }

  .section_home-stays .slider_arrow {
    top: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
    margin: auto;
    border: 0;
    color: #fff;
    background: var(--cf-sky);
    box-shadow: none;
    backdrop-filter: none;
  }

  .section_home-stays .w-slider-arrow-left {
    left: 0;
  }

  .section_home-stays .w-slider-arrow-right {
    right: 0;
  }

  .section_home-stays .slider_arrow-icon {
    width: 0.8rem !important;
    height: 1.12rem !important;
  }

  .section_home-stays .slider_arrow-icon svg {
    display: block;
  }

  .section_home-stays .slider_arrow-icon::before {
    display: none;
  }

  .section_home-stays .w-slider-arrow-left .slider_arrow-icon {
    transform: translateX(-0.1rem) !important;
  }

  .section_home-stays .w-slider-arrow-right .slider_arrow-icon {
    transform: translateX(0.1rem) !important;
  }

  .cf-location-distance-card {
    width: 100%;
  }

  .footer {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
  }

  .menu_head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .menu_head .footer_brand-lockup {
    min-width: 0;
  }

  .menu_head .cf-menu-actions {
    width: 100%;
  }

  .menu_head .cf-menu-actions .cf-menu-my-reservation .button {
    min-height: 3rem;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  .cf-booking-drawer-head h2 {
    max-width: 22rem;
    font-size: 1.5rem;
    line-height: 1;
  }
}

@media screen and (max-width: 479px) {
  .cf-location-distance-content {
    padding: 0.85rem !important;
  }

  .cf-location-distance-card .location_distances {
    grid-template-columns: 1fr;
  }

  .location_distance-item {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    justify-items: start;
    padding: 0.72rem 0.9rem;
  }

  .location_distance-item + .location_distance-item {
    border-top: 1px solid rgba(3, 36, 74, 0.12);
    border-left: 0;
  }

  .location_distance-value {
    width: 2.8rem;
    font-size: 1.7rem;
    text-align: center;
  }

  .location_distance-copy {
    font-size: 0.62rem;
    line-height: 1.25;
    text-align: left;
  }
}
