
:root {
  --hlp-ink: #11251e;
  --hlp-ink-soft: #43564e;
  --hlp-palm: #1f6a46;
  --hlp-palm-dark: #12462f;
  --hlp-sand: #e7b65f;
  --hlp-sand-light: #f4dfb7;
  --hlp-cream: #fbf8f1;
  --hlp-white: #ffffff;
  --hlp-line: rgba(17, 37, 30, .13);
  --hlp-shadow: 0 20px 60px rgba(12, 34, 25, .14);
  --hlp-radius: 26px;
}

.hlp-site,
.hlp-site * {
  box-sizing: border-box;
}

.hlp-site {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--hlp-ink);
  background: var(--hlp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  scroll-behavior: smooth;
}

.hlp-site img {
  display: block;
  max-width: 100%;
}

.hlp-site a {
  color: inherit;
  text-decoration: none;
}

.hlp-site button,
.hlp-site input,
.hlp-site select,
.hlp-site textarea {
  font: inherit;
}

.hlp-site svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hlp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hlp-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
}

.hlp-skip:focus {
  transform: translateY(0);
}

.hlp-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(7, 24, 17, .72), rgba(7, 24, 17, .08));
  color: #fff;
}

.hlp-header.is-scrolled {
  position: fixed;
  background: rgba(12, 42, 29, .95);
  box-shadow: 0 10px 32px rgba(0,0,0,.17);
  backdrop-filter: blur(14px);
}

.hlp-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hlp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hlp-brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50% 50% 50% 12px;
  color: var(--hlp-sand-light);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(255,255,255,.08);
}

.hlp-brand__text {
  display: grid;
  line-height: 1.15;
}

.hlp-brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: .01em;
}

.hlp-brand__text small {
  margin-top: 5px;
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .78;
}

.hlp-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .87rem;
  font-weight: 700;
}

.hlp-nav > a:not(.hlp-button) {
  position: relative;
  padding-block: 12px;
}

.hlp-nav > a:not(.hlp-button)::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--hlp-sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.hlp-nav > a:hover::after,
.hlp-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.hlp-menu-button {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hlp-menu-button span:not(.screen-reader-text) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .25s ease;
}

.hlp-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.hlp-button:focus-visible,
.hlp-site button:focus-visible,
.hlp-site input:focus-visible,
.hlp-site select:focus-visible,
.hlp-site textarea:focus-visible,
.hlp-site a:focus-visible,
.hlp-site summary:focus-visible {
  outline: 3px solid rgba(231, 182, 95, .55);
  outline-offset: 3px;
}

.hlp-button--small {
  min-height: 42px;
  padding: 10px 18px;
  background: var(--hlp-sand);
  color: #173326;
}

.hlp-button--primary {
  color: #173326;
  background: linear-gradient(135deg, #f0c56f, #dfa13e);
  box-shadow: 0 12px 28px rgba(218, 156, 54, .28);
}

.hlp-button--primary:hover {
  box-shadow: 0 16px 36px rgba(218, 156, 54, .38);
}

.hlp-button--glass {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}

.hlp-button--dark {
  color: #fff;
  background: var(--hlp-palm-dark);
  box-shadow: 0 12px 30px rgba(18, 70, 47, .22);
}

.hlp-button--full {
  width: 100%;
}

.hlp-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  color: #fff;
  background: #0f2b1f;
}

.hlp-slider,
.hlp-slide,
.hlp-slide img,
.hlp-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hlp-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hlp-slide.is-active {
  opacity: 1;
}

.hlp-slide img {
  object-fit: cover;
  object-position: center;
}

.hlp-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 22, 14, .88) 0%, rgba(5, 22, 14, .65) 42%, rgba(5, 22, 14, .16) 76%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.36));
}

.hlp-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hlp-eyebrow {
  margin: 0 0 12px;
  color: var(--hlp-sand);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.hlp-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(0,0,0,.28);
}

.hlp-hero__lead {
  max-width: 730px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hlp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hlp-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 36px;
  color: rgba(255,255,255,.88);
  font-size: .87rem;
  font-weight: 700;
}

.hlp-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hlp-slider-dots {
  position: absolute;
  z-index: 4;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  gap: 9px;
}

.hlp-slider-dots button {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
}

.hlp-slider-dots button.is-active {
  background: var(--hlp-sand);
}

.hlp-quick-book {
  position: relative;
  z-index: 6;
  margin-top: -28px;
}

.hlp-quick-book__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--hlp-shadow);
}

.hlp-quick-book__inner > div {
  display: grid;
}

.hlp-quick-book__inner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.hlp-quick-book__inner span {
  color: var(--hlp-ink-soft);
  font-size: .9rem;
}

.hlp-section {
  padding: 110px 0;
}

.hlp-section--soft {
  background: var(--hlp-cream);
}

.hlp-section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.hlp-section-heading h2,
.hlp-feature h2,
.hlp-reservation h2,
.hlp-location h2,
.hlp-faq h2,
.hlp-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hlp-section-heading > p:last-child,
.hlp-reservation__copy > p,
.hlp-location__content > p,
.hlp-faq__grid > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--hlp-ink-soft);
}

.hlp-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 48px;
}

.hlp-section-heading--split > p {
  margin: 0 0 7px;
}

.hlp-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hlp-plan-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--hlp-line);
  border-radius: var(--hlp-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(16, 43, 32, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hlp-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 106, 70, .25);
  box-shadow: 0 24px 55px rgba(16, 43, 32, .12);
}

.hlp-plan-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--hlp-palm);
  background: rgba(31, 106, 70, .1);
}

.hlp-plan-card__icon svg {
  width: 28px;
  height: 28px;
}

.hlp-plan-card h3 {
  margin: 24px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.hlp-plan-card p {
  margin: 0 0 22px;
  color: var(--hlp-ink-soft);
  font-size: .92rem;
}

.hlp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--hlp-palm);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.hlp-text-link span {
  transition: transform .2s ease;
}

.hlp-text-link:hover span {
  transform: translateX(5px);
}

.hlp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  min-height: 720px;
  background: var(--hlp-palm-dark);
  color: #fff;
}

.hlp-feature__image {
  min-height: 620px;
}

.hlp-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hlp-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 110px);
}

.hlp-feature__content h2 {
  max-width: 620px;
}

.hlp-feature-list {
  display: grid;
  gap: 22px;
  margin: 36px 0;
}

.hlp-feature-list > div {
  display: flex;
  gap: 16px;
}

.hlp-feature-list > div > svg {
  width: 30px;
  height: 30px;
  color: var(--hlp-sand);
}

.hlp-feature-list span {
  display: grid;
}

.hlp-feature-list strong {
  font-size: 1.02rem;
}

.hlp-feature-list small {
  margin-top: 2px;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
}

.hlp-feature__content .hlp-button {
  align-self: flex-start;
}

.hlp-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.hlp-gallery__item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #ddd;
  cursor: zoom-in;
}

.hlp-gallery__item--wide {
  grid-column: span 8;
  grid-row: span 2;
}

.hlp-gallery__item:nth-child(2) {
  grid-row: span 2;
}

.hlp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.hlp-gallery__item:hover img {
  transform: scale(1.035);
  filter: brightness(.78);
}

.hlp-gallery__item span {
  position: absolute;
  inset: auto auto 18px 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 27, 18, .76);
  font-size: .76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
}

.hlp-gallery__item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.hlp-reservation {
  background:
    radial-gradient(circle at 82% 10%, rgba(231,182,95,.16), transparent 34%),
    var(--hlp-white);
}

.hlp-reservation__grid {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(520px, 1.17fr);
  gap: 70px;
  align-items: start;
}

.hlp-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.hlp-check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 750;
}

.hlp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hlp-palm);
  font-size: .7rem;
}

.hlp-contact-box {
  display: grid;
  gap: 5px;
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--hlp-sand);
  border-radius: 0 18px 18px 0;
  background: var(--hlp-cream);
}

.hlp-contact-box span {
  color: var(--hlp-ink-soft);
  font-size: .8rem;
}

.hlp-contact-box a {
  font-weight: 850;
}

.hlp-booking-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--hlp-line);
  border-radius: var(--hlp-radius);
  background: #fff;
  box-shadow: var(--hlp-shadow);
}

.hlp-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.hlp-booking-form label {
  display: grid;
  gap: 8px;
  color: var(--hlp-ink);
  font-size: .82rem;
  font-weight: 850;
}

.hlp-booking-form input:not([type="checkbox"]),
.hlp-booking-form select,
.hlp-booking-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(17,37,30,.18);
  border-radius: 13px;
  color: var(--hlp-ink);
  background: #fff;
  font-size: .94rem;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hlp-booking-form textarea {
  resize: vertical;
}

.hlp-booking-form input:focus,
.hlp-booking-form select:focus,
.hlp-booking-form textarea:focus {
  border-color: var(--hlp-palm);
  box-shadow: 0 0 0 4px rgba(31,106,70,.1);
}

.hlp-consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--hlp-ink-soft) !important;
  font-size: .74rem !important;
  font-weight: 600 !important;
}

.hlp-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--hlp-palm);
}

.hlp-form-error {
  display: none;
  margin: 0;
  padding: 10px 13px;
  border-radius: 10px;
  color: #8a291d;
  background: #fff0ed;
  font-size: .8rem;
  font-weight: 700;
}

.hlp-form-error.is-visible {
  display: block;
}

.hlp-form-note {
  color: var(--hlp-ink-soft);
  text-align: center;
  font-size: .72rem;
}

.hlp-location {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  gap: 48px;
  align-items: center;
}

.hlp-location__map {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--hlp-radius);
  box-shadow: var(--hlp-shadow);
}

.hlp-location__map iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.hlp-location__content .hlp-plan-card__icon {
  margin-bottom: 28px;
}

.hlp-location__content .hlp-button {
  margin-top: 26px;
}

.hlp-faq__grid {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(520px,1.28fr);
  gap: 70px;
  align-items: start;
}

.hlp-accordion {
  display: grid;
  gap: 12px;
}

.hlp-accordion details {
  padding: 0 22px;
  border: 1px solid var(--hlp-line);
  border-radius: 18px;
  background: #fff;
}

.hlp-accordion summary {
  position: relative;
  padding: 21px 42px 21px 0;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.hlp-accordion summary::-webkit-details-marker {
  display: none;
}

.hlp-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 15px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--hlp-palm);
  background: rgba(31,106,70,.1);
  font-size: 1.25rem;
}

.hlp-accordion details[open] summary::after {
  content: "−";
}

.hlp-accordion details p {
  margin: 0;
  padding: 0 40px 22px 0;
  color: var(--hlp-ink-soft);
  font-size: .9rem;
}

.hlp-final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  color: #fff;
}

.hlp-final-cta > img,
.hlp-final-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hlp-final-cta > img {
  object-fit: cover;
}

.hlp-final-cta__overlay {
  background: linear-gradient(90deg, rgba(8,32,22,.9), rgba(8,32,22,.48));
}

.hlp-final-cta__content {
  position: relative;
  z-index: 2;
}

.hlp-final-cta h2 {
  max-width: 850px;
  margin-bottom: 28px;
}

.hlp-footer {
  padding: 70px 0 24px;
  color: rgba(255,255,255,.78);
  background: #0b2419;
}

.hlp-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr;
  gap: 60px;
}

.hlp-brand--footer {
  color: #fff;
}

.hlp-footer__grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.hlp-footer__grid > div:first-child p {
  max-width: 440px;
  margin: 18px 0 0;
}

.hlp-footer__grid strong {
  margin-bottom: 8px;
  color: #fff;
}

.hlp-footer__grid a:hover {
  color: var(--hlp-sand);
}

.hlp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .75rem;
}

.hlp-floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: #1fa85b;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  font-size: .86rem;
  font-weight: 900;
  transition: transform .2s ease;
}

.hlp-floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.hlp-floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.hlp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(0,0,0,.9);
}

.hlp-lightbox[hidden] {
  display: none;
}

.hlp-lightbox img {
  max-width: min(1180px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
}

.hlp-lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

body.hlp-lock {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .hlp-menu-button {
    display: block;
  }

  .hlp-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(11,36,25,.98);
    box-shadow: 0 20px 50px rgba(0,0,0,.24);
  }

  .hlp-nav.is-open {
    display: grid;
  }

  .hlp-nav a {
    padding: 11px 12px !important;
  }

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

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

  .hlp-feature__image {
    min-height: 520px;
  }

  .hlp-reservation__grid,
  .hlp-location,
  .hlp-faq__grid {
    grid-template-columns: 1fr;
  }

  .hlp-reservation__grid,
  .hlp-faq__grid {
    gap: 46px;
  }

  .hlp-location {
    gap: 40px;
  }

  .hlp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hlp-site {
    font-size: 17px;
  }

  .hlp-container {
    width: min(100% - 28px, 1180px);
  }

  .hlp-header__inner {
    min-height: 74px;
  }

  .hlp-brand__mark {
    width: 42px;
    height: 42px;
  }

  .hlp-brand__text strong {
    font-size: 1rem;
  }

  .hlp-brand__text small {
    font-size: .6rem;
  }

  .hlp-nav {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hlp-hero {
    min-height: 740px;
  }

  .hlp-hero__overlay {
    background:
      linear-gradient(180deg, rgba(5,22,14,.48), rgba(5,22,14,.82) 58%, rgba(5,22,14,.94)),
      linear-gradient(90deg, rgba(5,22,14,.5), rgba(5,22,14,.12));
  }

  .hlp-hero__content {
    align-self: end;
    padding-top: 120px;
    padding-bottom: 92px;
  }

  .hlp-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  .hlp-hero__lead {
    font-size: 1rem;
  }

  .hlp-hero__actions {
    display: grid;
  }

  .hlp-button {
    width: 100%;
  }

  .hlp-hero__proof {
    display: grid;
    gap: 10px;
  }

  .hlp-slider-dots {
    right: 16px;
    bottom: 34px;
  }

  .hlp-quick-book {
    margin-top: 0;
  }

  .hlp-quick-book__inner {
    width: 100%;
    border-radius: 0;
    display: grid;
    text-align: center;
  }

  .hlp-section {
    padding: 78px 0;
  }

  .hlp-section-heading {
    margin-bottom: 34px;
  }

  .hlp-section-heading--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hlp-plan-grid {
    grid-template-columns: 1fr;
  }

  .hlp-plan-card {
    min-height: auto;
  }

  .hlp-feature__image {
    min-height: 340px;
  }

  .hlp-feature__content {
    padding: 68px 22px;
  }

  .hlp-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .hlp-gallery__item,
  .hlp-gallery__item--wide,
  .hlp-gallery__item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .hlp-gallery__item:first-child {
    height: 320px;
  }

  .hlp-reservation__grid {
    gap: 40px;
  }

  .hlp-booking-form {
    padding: 22px 17px;
    border-radius: 20px;
  }

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

  .hlp-location__map,
  .hlp-location__map iframe {
    min-height: 390px;
    height: 390px;
  }

  .hlp-final-cta {
    min-height: 480px;
  }

  .hlp-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hlp-footer__bottom {
    display: grid;
  }

  .hlp-floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 54px;
    padding: 13px;
  }

  .hlp-floating-whatsapp span {
    display: none;
  }

  .hlp-lightbox {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hlp-site,
  .hlp-site *,
  .hlp-site *::before,
  .hlp-site *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* ===== Ajustes v2.1.0: WhatsApp, tarifas, reseñas y formulario separado ===== */
.hlp-button--whatsapp {
  color: #063c20 !important;
  border-color: rgba(57, 245, 121, .78);
  background: linear-gradient(135deg, #9dffc0 0%, #5cff8d 48%, #39f579 100%);
  box-shadow:
    0 12px 30px rgba(57, 245, 121, .34),
    0 0 0 1px rgba(255,255,255,.28) inset;
  text-shadow: none;
}

.hlp-button--whatsapp:hover {
  color: #032e17 !important;
  background: linear-gradient(135deg, #b7ffcf 0%, #73ffa0 48%, #4bff86 100%);
  box-shadow:
    0 17px 38px rgba(57, 245, 121, .48),
    0 0 24px rgba(92, 255, 141, .32);
}

.hlp-button--whatsapp:focus-visible {
  outline-color: rgba(57, 245, 121, .72);
}

.hlp-pricing {
  background:
    radial-gradient(circle at 90% 5%, rgba(92,255,141,.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbf8);
}

.hlp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 930px;
  margin-inline: auto;
}

.hlp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(17, 37, 30, .13);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(12, 34, 25, .10);
}

.hlp-price-card--featured {
  border-color: rgba(57,245,121,.55);
  background:
    radial-gradient(circle at 100% 0, rgba(92,255,141,.16), transparent 38%),
    #fff;
  box-shadow: 0 24px 65px rgba(31,106,70,.16);
}

.hlp-price-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #063c20;
  background: #91ffb6;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hlp-price-card__label {
  color: var(--hlp-palm-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.hlp-price-card__amount {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 24px 0 0;
  color: var(--hlp-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 5.6rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.055em;
}

.hlp-price-card__amount small {
  padding-top: 8px;
  font-size: .38em;
  letter-spacing: normal;
}

.hlp-price-card__currency {
  margin-top: 12px;
  color: var(--hlp-ink-soft);
  font-size: .82rem;
  font-weight: 800;
}

.hlp-price-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  color: var(--hlp-ink-soft);
  list-style: none;
}

.hlp-price-card li {
  position: relative;
  padding-left: 28px;
}

.hlp-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hlp-palm);
  font-weight: 900;
}

.hlp-price-card .hlp-button {
  margin-top: auto;
}

.hlp-pricing-note {
  max-width: 920px;
  margin: 24px auto 0;
  color: var(--hlp-ink-soft);
  font-size: .78rem;
  text-align: center;
}

.hlp-reservation__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 42px;
}

.hlp-reservation__copy {
  max-width: 760px;
}

.hlp-reservation__copy > p {
  max-width: 720px;
}

.hlp-reservation__intro .hlp-contact-box {
  margin-top: 0;
}

.hlp-booking-form-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding-top: 8px;
  clear: both;
}

.hlp-booking-form {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 38px;
}

.hlp-reviews {
  background: #0c2a1d;
  color: #fff;
}

.hlp-reviews .hlp-section-heading > p,
.hlp-reviews .hlp-section-heading--split > p {
  color: rgba(255,255,255,.72);
}

.hlp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hlp-review-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 25px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.hlp-review-card__stars {
  color: #9dffc0;
  font-size: 1.05rem;
  letter-spacing: .13em;
}

.hlp-review-card blockquote {
  margin: 26px 0;
  color: rgba(255,255,255,.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hlp-review-card footer {
  margin-top: auto;
  color: #9dffc0;
  font-weight: 850;
}

.hlp-review-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  background: rgba(255,255,255,.07);
}

.hlp-review-empty strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.hlp-review-empty p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
}

.hlp-map-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--hlp-ink-soft);
  background: #eef5f0;
  text-align: center;
}

.hlp-floating-whatsapp {
  color: #063c20 !important;
  background: linear-gradient(135deg, #9dffc0, #39f579);
  box-shadow:
    0 14px 36px rgba(57,245,121,.46),
    0 0 24px rgba(92,255,141,.24);
}

.hlp-floating-whatsapp:hover {
  color: #032e17 !important;
  background: linear-gradient(135deg, #b7ffcf, #4bff86);
}

@media (max-width: 1050px) {
  .hlp-price-grid,
  .hlp-review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hlp-review-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .hlp-reservation__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hlp-reservation__intro .hlp-contact-box {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .hlp-price-grid,
  .hlp-review-grid {
    grid-template-columns: 1fr;
  }

  .hlp-review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .hlp-price-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .hlp-price-card__badge {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }

  .hlp-booking-form {
    padding: 24px 17px;
  }

  .hlp-review-empty {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===== Tema premium negro v2.2.0 ===== */
.hlp-site {
  --hlp-ink: #f3eee5;
  --hlp-ink-soft: #b9b2a6;
  --hlp-palm: #c9a85d;
  --hlp-palm-dark: #0b0d0c;
  --hlp-sand: #d7b76c;
  --hlp-sand-light: #f2ddb0;
  --hlp-cream: #101311;
  --hlp-white: #090b0a;
  --hlp-line: rgba(215, 183, 108, .22);
  --hlp-shadow: 0 26px 72px rgba(0, 0, 0, .48);
  color-scheme: dark;
  color: var(--hlp-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 183, 108, .07), transparent 30%),
    radial-gradient(circle at 92% 44%, rgba(64, 255, 132, .035), transparent 26%),
    #070807;
}

.hlp-header {
  border-bottom-color: rgba(215, 183, 108, .22);
  background: linear-gradient(180deg, rgba(2, 3, 3, .92), rgba(2, 3, 3, .26));
}

.hlp-header.is-scrolled {
  background: rgba(5, 7, 6, .96);
  border-bottom-color: rgba(215, 183, 108, .28);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .58);
}

.hlp-brand__mark {
  border-color: rgba(215, 183, 108, .66);
  color: var(--hlp-sand-light);
  background: linear-gradient(145deg, rgba(215, 183, 108, .17), rgba(255, 255, 255, .025));
  box-shadow: 0 0 28px rgba(215, 183, 108, .10);
}

.hlp-button--small,
.hlp-button--primary {
  color: #17130c;
  border-color: rgba(255, 239, 197, .3);
  background: linear-gradient(135deg, #f0d591 0%, #d8b45f 52%, #b98a36 100%);
  box-shadow: 0 14px 34px rgba(190, 144, 54, .30);
}

.hlp-button--primary:hover,
.hlp-button--small:hover {
  color: #100d08;
  box-shadow: 0 18px 42px rgba(215, 183, 108, .43), 0 0 22px rgba(215, 183, 108, .16);
}

.hlp-button--dark {
  color: var(--hlp-sand-light);
  border-color: rgba(215, 183, 108, .36);
  background: linear-gradient(145deg, #171a18, #090b0a);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
}

.hlp-hero {
  background: #030403;
}

.hlp-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .91) 0%, rgba(0, 0, 0, .69) 43%, rgba(0, 0, 0, .24) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .55));
}

.hlp-slider-dots button.is-active,
.hlp-nav > a:not(.hlp-button)::after {
  background: var(--hlp-sand);
}

.hlp-quick-book__inner {
  border-color: rgba(215, 183, 108, .30);
  background: rgba(10, 12, 11, .94);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
}

.hlp-quick-book__inner strong,
.hlp-section-heading h2,
.hlp-feature__content h2,
.hlp-location__content h2,
.hlp-faq h2,
.hlp-final-cta h2,
.hlp-reservation__copy h2 {
  color: #fffaf0;
}

.hlp-quick-book__inner span,
.hlp-section-heading > p,
.hlp-section-heading--split > p,
.hlp-plan-card p,
.hlp-location__content p,
.hlp-faq p,
.hlp-reservation__copy > p,
.hlp-pricing-note {
  color: var(--hlp-ink-soft);
}

.hlp-section,
.hlp-section--soft,
.hlp-pricing,
.hlp-reservation,
.hlp-faq,
.hlp-reviews {
  background: transparent;
}

.hlp-section--soft,
.hlp-pricing,
.hlp-reservation,
.hlp-faq {
  position: relative;
}

.hlp-section--soft::before,
.hlp-pricing::before,
.hlp-reservation::before,
.hlp-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(215,183,108,.025), rgba(255,255,255,.012));
  border-block: 1px solid rgba(215, 183, 108, .08);
}

.hlp-section--soft > *,
.hlp-pricing > *,
.hlp-reservation > *,
.hlp-faq > * {
  position: relative;
}

.hlp-plan-card,
.hlp-price-card,
.hlp-review-card,
.hlp-review-empty,
.hlp-booking-form,
.hlp-contact-box,
.hlp-accordion details {
  border-color: rgba(215, 183, 108, .22);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 183, 108, .065), transparent 42%),
    linear-gradient(145deg, #141714, #0a0c0b);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.hlp-plan-card:hover,
.hlp-price-card:hover,
.hlp-review-card:hover {
  border-color: rgba(215, 183, 108, .52);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .58), 0 0 28px rgba(215, 183, 108, .08);
}

.hlp-plan-card h3,
.hlp-price-card__label,
.hlp-price-card__amount,
.hlp-contact-box a,
.hlp-review-empty strong,
.hlp-accordion summary {
  color: #fff8e9;
}

.hlp-plan-card__icon,
.hlp-feature-list svg {
  color: var(--hlp-sand-light);
  background: rgba(215, 183, 108, .10);
}

.hlp-text-link {
  color: var(--hlp-sand-light);
}

.hlp-feature {
  background: #050605;
}

.hlp-feature__content {
  color: var(--hlp-ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(215,183,108,.11), transparent 38%),
    linear-gradient(145deg, #121512, #080a09);
}

.hlp-feature-list > div {
  border-color: rgba(215, 183, 108, .14);
}

.hlp-feature-list strong {
  color: #fff8e9;
}

.hlp-feature-list small {
  color: var(--hlp-ink-soft);
}

/* Marcos premium para las fotografías principales */
.hlp-feature__image,
.hlp-location__map {
  padding: 7px;
  border: 1px solid rgba(215, 183, 108, .66);
  background: linear-gradient(145deg, #d7b76c, #5f4924 44%, #d7b76c 70%, #2c2212);
  box-shadow: 0 30px 78px rgba(0, 0, 0, .62), 0 0 0 1px rgba(255, 240, 202, .08) inset;
}

.hlp-feature__image img,
.hlp-location__map iframe,
.hlp-map-placeholder {
  border-radius: 14px;
}

.hlp-gallery {
  gap: 20px;
}

.hlp-gallery__item {
  padding: 6px;
  border: 1px solid rgba(215, 183, 108, .72);
  border-radius: 23px;
  background: linear-gradient(145deg, #d7b76c, #4b381c 42%, #bf974b 72%, #251c0e);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 242, 206, .08) inset;
}

.hlp-gallery__item img {
  border-radius: 16px;
  filter: saturate(1.04) contrast(1.04);
}

.hlp-gallery__item::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 245, 216, .13);
  border-radius: 16px;
}

.hlp-gallery__item span {
  z-index: 3;
  color: #fffaf0;
  background: rgba(0, 0, 0, .66);
  border: 1px solid rgba(215, 183, 108, .28);
  backdrop-filter: blur(10px);
}

.hlp-pricing {
  background:
    radial-gradient(circle at 88% 8%, rgba(72, 255, 137, .055), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(215, 183, 108, .08), transparent 32%),
    #080a09;
}

.hlp-price-card--featured {
  border-color: rgba(91, 255, 146, .48);
  background:
    radial-gradient(circle at 100% 0, rgba(91, 255, 146, .10), transparent 38%),
    radial-gradient(circle at 0 100%, rgba(215, 183, 108, .08), transparent 40%),
    linear-gradient(145deg, #151916, #090b0a);
}

.hlp-price-card__amount {
  color: var(--hlp-sand-light);
  text-shadow: 0 4px 24px rgba(215, 183, 108, .12);
}

.hlp-price-card__currency,
.hlp-price-card ul {
  color: var(--hlp-ink-soft);
}

.hlp-price-card li::before {
  color: #68ff9e;
}

.hlp-price-card__badge {
  color: #052411;
  background: linear-gradient(135deg, #bcffd3, #59ff91);
  box-shadow: 0 8px 24px rgba(72, 255, 137, .22);
}

/* Formulario siempre debajo de la descripción, sin superposición */
.hlp-reservation__intro {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hlp-reservation__copy {
  max-width: 900px;
  margin-inline: auto;
}

.hlp-reservation__copy > p {
  max-width: 780px;
  margin-inline: auto;
}

.hlp-check-list {
  justify-content: center;
}

.hlp-reservation__intro .hlp-contact-box {
  max-width: 680px;
  margin: 30px auto 0;
}

.hlp-booking-form-wrap {
  margin-top: 50px;
  padding-top: 0;
}

.hlp-booking-form {
  max-width: 980px;
  padding: 42px;
}

.hlp-booking-form label {
  color: #eee5d5;
}

.hlp-booking-form input,
.hlp-booking-form select,
.hlp-booking-form textarea {
  color: #fffaf0;
  border-color: rgba(215, 183, 108, .25);
  background: #070908;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.hlp-booking-form input::placeholder,
.hlp-booking-form textarea::placeholder {
  color: #777168;
}

.hlp-booking-form input:focus,
.hlp-booking-form select:focus,
.hlp-booking-form textarea:focus {
  border-color: rgba(215, 183, 108, .74);
  box-shadow: 0 0 0 4px rgba(215, 183, 108, .09);
}

.hlp-consent,
.hlp-form-note {
  color: var(--hlp-ink-soft);
}

.hlp-form-error {
  border-color: rgba(255, 106, 106, .28);
  color: #ffc2c2;
  background: rgba(120, 20, 20, .22);
}

.hlp-reviews {
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 183, 108, .09), transparent 30%),
    #060807;
  color: var(--hlp-ink);
}

.hlp-review-card__stars,
.hlp-review-card footer {
  color: #70ffa4;
}

.hlp-review-card blockquote {
  color: #f7efe2;
}

.hlp-location {
  align-items: stretch;
}

.hlp-location__content {
  border: 1px solid rgba(215, 183, 108, .18);
  border-radius: 26px;
  background: linear-gradient(145deg, #121512, #080a09);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .42);
}

.hlp-map-placeholder {
  color: var(--hlp-ink-soft);
  background: #090b0a;
}

.hlp-accordion details[open] {
  border-color: rgba(215, 183, 108, .42);
}

.hlp-accordion details p {
  color: var(--hlp-ink-soft);
}

.hlp-final-cta__overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.48));
}

.hlp-footer {
  border-top: 1px solid rgba(215, 183, 108, .14);
  color: var(--hlp-ink-soft);
  background: #030403;
}

.hlp-footer strong,
.hlp-footer .hlp-brand__text strong {
  color: #fff8e9;
}

.hlp-footer a:hover {
  color: var(--hlp-sand-light);
}

.hlp-lightbox {
  background: rgba(0, 0, 0, .96);
}

.hlp-lightbox img {
  padding: 6px;
  border: 1px solid rgba(215, 183, 108, .72);
  border-radius: 22px;
  background: linear-gradient(145deg, #d7b76c, #4b381c 42%, #bf974b 72%, #251c0e);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .72);
}

@media (max-width: 760px) {
  .hlp-booking-form {
    padding: 27px 18px;
  }

  .hlp-feature__image,
  .hlp-location__map,
  .hlp-gallery__item {
    padding: 4px;
  }

  .hlp-gallery__item::after {
    inset: 4px;
  }
}


/* ===== v2.3.0: pantalla completa real y nueva galería fotográfica ===== */
body.hlp-hotel-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
  background: #050605 !important;
}

body.hlp-hotel-page .wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

body.hlp-hotel-page .wp-site-blocks > header,
body.hlp-hotel-page .wp-site-blocks > footer,
body.hlp-hotel-page .wp-block-post-title,
body.hlp-hotel-page .entry-header {
  display: none !important;
}

body.hlp-hotel-page main,
body.hlp-hotel-page .site-main,
body.hlp-hotel-page .wp-block-post-content,
body.hlp-hotel-page .entry-content,
body.hlp-hotel-page article,
body.hlp-hotel-page .wp-block-group,
body.hlp-hotel-page .wp-block-group__inner-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hlp-site {
  position: relative;
  left: auto !important;
  right: auto !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 100vh;
}

.hlp-hero {
  min-height: 100svh;
}

.hlp-slide img {
  object-position: center center;
}

.hlp-feature__image img {
  object-position: center;
}

.hlp-gallery {
  grid-auto-rows: 225px;
}

.hlp-gallery__item:nth-child(2) {
  grid-row: span 2;
}

.hlp-gallery__item:nth-child(7),
.hlp-gallery__item:nth-child(8),
.hlp-gallery__item:nth-child(9),
.hlp-gallery__item:nth-child(10) {
  grid-column: span 3;
}

.hlp-gallery__item:nth-child(8) img {
  object-position: center 56%;
}

.hlp-gallery__item:nth-child(9) img {
  object-position: center;
}

.hlp-final-cta > img {
  object-position: center 58%;
}

@media (max-width: 1050px) {
  .hlp-gallery__item:nth-child(7),
  .hlp-gallery__item:nth-child(8),
  .hlp-gallery__item:nth-child(9),
  .hlp-gallery__item:nth-child(10) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .hlp-site {
    left: auto !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
  }

  .hlp-hero {
    min-height: 100svh;
  }

  .hlp-gallery__item:nth-child(7),
  .hlp-gallery__item:nth-child(8),
  .hlp-gallery__item:nth-child(9),
  .hlp-gallery__item:nth-child(10) {
    grid-column: auto;
  }

  .hlp-gallery__item:nth-child(2) img {
    object-position: center 46%;
  }
}


/* ===== v2.3.1 hotfix: corrige desplazamiento lateral del contenido ===== */
body.hlp-hotel-page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
}
body.hlp-hotel-page .alignfull,
body.hlp-hotel-page .wp-block-post-content {
  width: 100% !important;
  max-width: none !important;
}
