/* src/styles/app.css */
:root {
  color-scheme: light;
  --teal: #42c2bb;
  --teal-deep: #22b8b3;
  --teal-dark: #209b96;
  --pink: #f5a0c2;
  --ink: #2b2b2b;
  --muted: #737373;
  --line: #e8e8e8;
  --panel: #ffffff;
  --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 20px rgba(0, 0, 0, 0.11);
}
* {
  box-sizing: border-box;
}
html,
body,
#root {
  min-height: 100%;
  margin: 0;
}
html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
html.lenis.lenis-stopped {
  overflow: hidden;
}
body {
  background: #ffffff;
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
iframe,
video {
  max-width: 100%;
}
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.site-header__top {
  background: #fff;
}
.site-header__navwrap {
  position: relative;
  background: var(--teal);
  padding-bottom: 3px;
  z-index: 2;
}
.site-header__glassbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 110px;
  height: 44px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  overflow: hidden;
  z-index: 1;
}
.site-header__glassbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015));
}
.site-header__glassline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}
.site-header__inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.site-header__inner--nav {
  min-height: 62px;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.brand img {
  width: 142px;
  display: block;
  object-fit: contain;
}
.site-header__meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #272727;
  font-size: 0.98rem;
  font-weight: 500;
}
.contact-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.contact-meta__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #1fb5ae;
  color: #fff;
}
.contact-meta__icon svg {
  width: 15px;
  height: 15px;
  display: block;
  overflow: visible;
}
.contact-meta__icon--email svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  min-width: 44px;
  height: 44px;
  margin: 6px 0;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font: inherit;
}
.menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.menu-toggle__icon span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #fff;
}
.menu-toggle__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-header__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex: 1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-nav__link {
  padding: 17px 2px 15px;
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
}
.site-nav__link--active {
  background: #fff;
  color: var(--teal-dark);
  padding: 13px 16px 12px;
  border-bottom-color: transparent;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__mobile-brand,
.site-header__mobile-actions,
.header-contact-button--mobile {
  display: none;
}
.header-language {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  z-index: 20010;
}
.header-language__bubble,
.header-globe {
  border: 0;
  cursor: pointer;
}
.header-language__bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    box-shadow 220ms ease;
  overflow: hidden;
}
.header-language__bubble img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.header-language--open .header-language__bubble {
  opacity: 1;
  pointer-events: auto;
}
.header-language--open .header-language__bubble--pt {
  transform: translate(-50%, calc(-50% - 56px)) scale(1);
}
.header-language--open .header-language__bubble--es {
  transform: translate(calc(-50% + 38px), calc(-50% - 56px)) scale(1);
}
.header-language--open .header-language__bubble--de {
  transform: translate(calc(-50% - 38px), calc(-50% - 18px)) scale(1);
}
.header-language--open .header-language__bubble--en {
  transform: translate(calc(-50% - 6px), calc(-50% + 42px)) scale(1);
}
.header-language__bubble--active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 12px 24px rgba(0, 0, 0, 0.2);
}
.header-language__bubble:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.header-language--open .header-language__bubble--pt:hover {
  transform: translate(-50%, calc(-50% - 56px)) scale(1.08);
}
.header-language--open .header-language__bubble--es:hover {
  transform: translate(calc(-50% + 38px), calc(-50% - 56px)) scale(1.08);
}
.header-language--open .header-language__bubble--de:hover {
  transform: translate(calc(-50% - 38px), calc(-50% - 18px)) scale(1.08);
}
.header-language--open .header-language__bubble--en:hover {
  transform: translate(calc(-50% - 6px), calc(-50% + 42px)) scale(1.08);
}
.header-contact-button {
  min-width: 92px;
  padding: 12px 22px;
  background: #fff;
  color: var(--teal-dark);
  text-align: center;
  font-size: 0.94rem;
  font-weight: 500;
  padding-top: 11px;
  padding-bottom: 10px;
}
.header-globe {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  position: relative;
  z-index: 2;
  transition: background 180ms ease, transform 180ms ease;
}
.header-globe:hover,
.header-language--open .header-globe {
  background: rgba(255, 255, 255, 0.24);
}
.header-globe svg {
  width: 23px;
  height: 23px;
  display: block;
}
.site-main {
  flex: 1;
  padding: 0 0 40px;
}
.site-main--with-overlay {
  margin-top: -44px;
  padding-top: 44px;
}
.home-page {
  width: 100%;
}
.home-hero {
  position: relative;
  width: 100%;
  margin-bottom: 84px;
  overflow: visible;
}
.home-hero__image {
  width: 100%;
  height: min(64vw, 680px);
  display: block;
  object-fit: cover;
}
.home-hero--villa .home-hero__image--villa {
  height: min(68vw, 750px);
  min-height: 580px;
  object-fit: cover;
  object-position: center 44%;
}
.home-hero--suites {
  margin-bottom: 0;
  overflow: visible;
}
.home-hero--suites .home-hero__image--suites {
  height: min(50vw, 640px);
  min-height: 480px;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.02);
}
#suites-booking-portal .booking-bar__panel {
  width: auto;
  padding: 10px;
  background: #fff;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}
.booking-bar {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  z-index: 30;
  width: min(1120px, calc(100% - 40px));
  padding: 24px 22px 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  overflow: visible;
}
.booking-bar__panel {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(210px, 1.1fr) minmax(180px, 1fr) minmax(180px, 1fr) 210px;
  gap: 8px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  overflow: visible;
}
.booking-bar__field {
  display: grid;
  gap: 4px;
  position: relative;
}
.booking-bar__field > span {
  display: none;
}
.booking-bar__field input,
.booking-bar__field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #7e7e7e;
  font: inherit;
  font-size: 0.98rem;
}
.booking-bar__field input:focus,
.booking-bar__field select:focus {
  outline: none;
  border-color: rgba(31, 181, 174, 0.85);
  box-shadow: 0 0 0 3px rgba(31, 181, 174, 0.12);
}
.booking-bar__datefield {
  position: relative;
}
.booking-bar__datefield--invalid {
  z-index: 22;
}
.booking-bar__datetrigger {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #7e7e7e;
  font: inherit;
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.booking-bar__datetrigger--open,
.booking-bar__datetrigger:hover {
  border-color: rgba(31, 181, 174, 0.85);
  box-shadow: 0 0 0 3px rgba(31, 181, 174, 0.12);
}
.booking-bar__datetrigger--invalid {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.booking-bar__datevalue {
  display: block;
  flex: 1 1 auto;
  text-align: left;
  color: #9b9b9b;
  font-size: 0.98rem;
  line-height: 1;
}
.booking-bar__datevalue--filled {
  color: #4d4d4d;
}
.booking-bar__dateicon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #505050;
  flex: 0 0 auto;
}
.booking-bar__dateicon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.booking-calendar {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  z-index: 23;
  width: 320px;
  padding: 18px;
  border: 1px solid rgba(31, 181, 174, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.booking-calendar__header strong {
  color: #2d2d2d;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.booking-calendar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-calendar__nav button,
.booking-calendar__footer button {
  border: 0;
  background: transparent;
  color: #3d3d3d;
  font: inherit;
  cursor: pointer;
}
.booking-calendar__nav button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3fbfa;
  color: var(--teal-dark);
  font-size: 1.25rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.booking-calendar__nav button svg {
  width: 16px;
  height: 16px;
  display: block;
}
.booking-calendar__nav button:hover {
  background: var(--teal);
  color: #fff;
}
.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.booking-calendar__weekdays {
  margin-bottom: 10px;
}
.booking-calendar__weekdays span {
  text-align: center;
  color: #7a8a89;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.booking-calendar__day {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #333;
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.booking-calendar__day:hover:not(:disabled) {
  background: #e9f8f7;
  color: var(--teal-dark);
  transform: translateY(-1px);
}
.booking-calendar__day--selected {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 18px rgba(31, 181, 174, 0.24);
}
.booking-calendar__day--muted {
  color: #b9c0bf;
}
.booking-calendar__day:disabled {
  color: #d1d7d7;
  cursor: not-allowed;
}
.booking-calendar__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-calendar__footer button {
  padding: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.booking-bar__field-error {
  position: absolute;
  top: calc(100% + 12px);
  left: 12px;
  z-index: 24;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #1f2937;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}
.booking-bar__field-error::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 100%;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.booking-bar__button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
}
.home-section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
.home-section + .home-section {
  margin-top: 40px;
}
.home-section--cards {
  width: min(1280px, calc(100% - 40px));
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 72px 0 48px;
}
.home-section__intro {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
  display: grid;
  gap: 14px;
}
.home-section__intro h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.home-section__intro h3 {
  margin: 0;
  color: var(--sand-dark);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.35;
  font-weight: 600;
}
.home-section__intro p {
  margin: 0;
  color: #5f5f5f;
  font-size: 1.04rem;
  line-height: 1.75;
}
.resort-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.resort-card {
  display: block;
  position: relative;
  padding-bottom: 28px;
}
.resort-card__image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.resort-card__image-wrapper:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}
.resort-card__image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.resort-card__image-wrapper:hover img {
  transform: scale(1.08);
}
.resort-card__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  min-width: 200px;
  max-width: calc(100% - 40px);
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #272727;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.resort-card__label:hover {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 181, 174, 0.32);
}
.resort-card__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  flex: 0 0 auto;
}
.resort-card__icon svg,
.resort-card__icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.suites-showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 840px;
  margin-top: 34px;
  background-color: #f5efe9;
}
.suites-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 236, 223, 0.28),
      rgba(255, 247, 239, 0.16) 28%,
      rgba(255, 255, 255, 0.04) 60%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 66%,
      #ffffff 66%);
  z-index: 1;
}
.suites-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--suites-backdrop);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  filter: saturate(0.94) brightness(1.04);
  z-index: 0;
}
.suites-showcase__overlay {
  position: absolute;
  inset: 0;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 120px;
  z-index: 2;
}
.suites-showcase__overlay h2 {
  margin: 0 0 74px;
  color: #fff;
  font-size: 3.55rem;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}
.suite-showcase-grid,
.suite-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.suite-showcase-grid {
  align-items: start;
  gap: 38px;
}
.suite-highlight-shell {
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.suite-highlight-shell__backdrop {
  display: none;
}
.suite-showcase-grid .suite-highlight-shell:nth-child(2) {
  transform: translateY(-60px);
}
.suite-highlight-card,
.suite-catalog-card,
.review-card,
.content-panel,
.gallery-tile,
.contact-card,
.suite-page-card {
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.suite-highlight-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}
.suite-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}
.suite-highlight-card img,
.suite-catalog-card img,
.suite-page-card img,
.gallery-tile img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.suite-highlight-card img,
.suite-catalog-card img,
.suite-page-card img {
  height: 195px;
}
.suite-highlight-card__body,
.suite-catalog-card__body,
.suite-page-card__body {
  padding: 12px 16px 16px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
}
.suite-highlight-card__body h3,
.suite-catalog-card__body h3,
.suite-page-card__body h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 400;
}
.suite-highlight-card__body ul,
.suite-catalog-card__body ul,
.suite-page-card__body ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.suite-highlight-card__body li,
.suite-catalog-card__body li,
.suite-page-card__body li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #666e79;
  font-size: 0.92rem;
}
.suite-highlight-card__body li::before,
.suite-catalog-card__body li::before,
.suite-page-card__body li::before {
  content: "\e2\20ac\a2";
  position: absolute;
  left: 4px;
  color: #ef91be;
}
.suite-highlight-card__body a,
.suite-catalog-card__body a,
.suite-page-card__body a {
  width: 100%;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}
.home-section--suites-grid {
  margin-top: 28px;
}
.suite-highlight-card__body li::before,
.suite-catalog-card__body li::before,
.suite-page-card__body li::before {
  content: none;
}
.suite-feature-icon {
  width: 16px;
  height: 16px;
  color: #d4789c;
  flex: 0 0 auto;
}
.suite-feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.review-strip {
  width: min(1100px, calc(100% - 40px));
  margin: 42px auto 0;
}
.review-strip__header {
  text-align: center;
  margin-bottom: 18px;
}
.review-strip__header strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.review-strip__stars {
  display: block;
  color: #f2b400;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.review-strip__header p {
  margin: 6px 0 0;
  color: #5b5b5b;
}
.review-strip__source {
  display: block;
  margin-top: 4px;
  color: #1b69d9;
  font-size: 1.65rem;
  font-weight: 700;
}
:root {
  --card-width: 480px;
  --card-gap: 24px;
}
@media (max-width: 768px) {
  :root {
    --card-width: 290px;
    --card-gap: 16px;
  }
}
.review-strip__carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  margin: 12px 0;
}
.review-strip__fade-left,
.review-strip__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 5;
}
.review-strip__fade-left {
  left: 0;
  background:
    linear-gradient(
      to right,
      #ffffff 10%,
      rgba(255, 255, 255, 0) 100%);
}
.review-strip__fade-right {
  right: 0;
  background:
    linear-gradient(
      to left,
      #ffffff 10%,
      rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 768px) {
  .review-strip__fade-left,
  .review-strip__fade-right {
    width: 40px;
  }
}
.review-strip__carousel-track {
  display: flex;
  align-items: flex-start;
  gap: var(--card-gap);
  cursor: grab;
  user-select: none;
  width: max-content;
  box-sizing: border-box;
  position: relative;
  left: 50%;
}
.review-strip__carousel-track:active {
  cursor: grabbing;
}
.review-card {
  flex: 0 0 var(--card-width);
  align-self: flex-start;
  min-height: 200px;
  padding: 24px;
  border-radius: 12px;
  box-sizing: border-box;
  opacity: 0.55;
  transform: scale(0.94);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.review-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.review-card--active {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(27, 105, 217, 0.09);
}
.review-strip__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.review-strip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #dcdcdc;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.review-strip__dot:hover {
  background: #b0b0b0;
  transform: scale(1.2);
}
.review-strip__dot--active {
  background: #1b69d9;
  width: 20px;
  border-radius: 4px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #53b5e8;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}
.review-card__meta strong,
.review-card__meta small {
  display: block;
}
.review-card__meta small {
  color: #8b8b8b;
}
.review-card__stars {
  margin-top: 10px;
  color: #f2b400;
  letter-spacing: 0.08em;
}
.review-card p {
  margin: 10px 0 0;
  color: #676767;
  line-height: 1.6;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.6em * 12);
}
.cta-banner {
  width: 100%;
  margin-top: 46px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.cta-banner__overlay {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.52));
}
.cta-banner__overlay h2 {
  max-width: 700px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-banner__overlay a {
  min-width: 160px;
  padding: 10px 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
}
.destination-section {
  position: relative;
  width: 100%;
  background:
    linear-gradient(
      135deg,
      #edf8f5 0%,
      #e2f4ed 100%);
  padding: 88px 0 110px;
  overflow: hidden;
  margin-top: 54px;
  border-top: 1px solid rgba(66, 194, 187, 0.08);
  border-bottom: 1px solid rgba(66, 194, 187, 0.08);
}
.dest-decor {
  position: absolute;
  color: #ffffff;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.dest-decor--shell {
  width: 170px;
  height: 170px;
  left: -35px;
  top: 12%;
  transform: rotate(25deg);
}
.dest-decor--palm {
  width: 280px;
  height: 280px;
  right: -55px;
  top: -45px;
  transform: rotate(-30deg);
  opacity: 0.38;
}
.dest-decor--waves {
  width: 210px;
  height: auto;
  left: 3%;
  bottom: 8%;
  opacity: 0.42;
}
.dest-decor--starfish {
  width: 135px;
  height: 135px;
  right: 2%;
  bottom: 6%;
  transform: rotate(-15deg);
  opacity: 0.48;
}
.destination-story {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 2;
}
.destination-story__copy img {
  width: 122px;
  display: block;
  margin-bottom: 12px;
}
.destination-story__copy h2 {
  margin: 0 0 12px;
  font-size: 2.65rem;
  font-weight: 700;
}
.destination-story__copy p {
  margin: 0 0 12px;
  color: #2f2f2f;
  font-size: 1.08rem;
  line-height: 1.65;
  font-style: italic;
}
.destination-story__gallery {
  position: relative;
  min-height: 560px;
  --destination-tall-y: 0px;
  --destination-square-x: 0px;
}
.destination-story__image {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  will-change: transform;
}
.destination-story__image--tall {
  top: 0;
  right: 4%;
  width: 380px;
  height: 462px;
  transform: translate3d(0, var(--destination-tall-y), 0);
}
.destination-story__image--square {
  top: 176px;
  right: 10%;
  width: 360px;
  height: 360px;
  z-index: 2;
  transform: translate3d(var(--destination-square-x), 0, 0);
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #11c15b;
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 193, 91, 0.42);
  z-index: 40;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.floating-whatsapp:hover {
  background-color: #12d264;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(17, 193, 91, 0.54);
}
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  display: block;
}
.wp-page {
  width: min(1100px, calc(100% - 40px));
  margin: 26px auto 0;
}
.wp-page__hero {
  padding: 42px 36px;
  background:
    linear-gradient(
      135deg,
      var(--teal-dark),
      #64d9d3);
  color: #fff;
}
.wp-page__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}
.wp-page__hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
}
.wp-page__description {
  max-width: 640px;
  margin: 12px 0 0;
  line-height: 1.7;
}
.content-panel {
  margin-top: 24px;
  padding: 28px;
}
.content-panel--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-grid,
.feature-grid,
.suite-preview-grid,
.suite-page-grid,
.gallery-grid,
.split-gallery {
  display: grid;
  gap: 20px;
}
.hero-grid {
  grid-template-columns: 1fr 1fr;
}
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}
.suite-preview-grid,
.suite-page-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}
.split-gallery {
  grid-template-columns: 1fr 1fr;
}
.hero-copy h2,
.section-heading h2,
.split-copy h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 300;
}
.hero-copy p,
.split-copy p,
.section-heading p,
.reading-column p,
.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.8;
}
.section-heading {
  margin-bottom: 20px;
  text-align: center;
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.support-heading {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 1.45rem;
  font-weight: 600;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.ghost-button,
.cta-button {
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.ghost-button {
  border: 1px solid var(--line);
}
.cta-button {
  background: var(--teal);
  color: #fff;
}
.hero-media img,
.split-gallery img,
.feature-card img,
.suite-preview-card img,
.map-card iframe {
  width: 100%;
  display: block;
  object-fit: cover;
}
.hero-media img,
.map-card iframe {
  min-height: 400px;
}
.feature-card,
.suite-preview-card,
.gallery-tile,
.contact-card {
  background: #fff;
}
.feature-card__body,
.suite-preview-card__body {
  padding: 14px;
}
.feature-card__body h3,
.suite-preview-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.feature-card__body span,
.suite-preview-card__body a {
  color: var(--teal-dark);
  font-weight: 700;
}
.contact-stack,
.footer-links {
  display: grid;
  gap: 14px;
}
.contact-card {
  padding: 18px;
}
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}
.map-card iframe {
  border: 0;
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.chip-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.chip-button--active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.gallery-tile img {
  aspect-ratio: 1 / 1;
}
.reading-column {
  display: grid;
  gap: 12px;
}
.reading-column > section {
  display: grid;
  gap: 10px;
}
.reading-column h3 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}
.site-footer {
  background: #fff;
}
.site-main:has(.official-page--suites) + .site-footer {
  border-top: 1px solid var(--line);
}
.site-footer__main {
  padding: 48px 0 38px;
}
.site-footer__inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.8fr;
  gap: 54px;
  align-items: start;
}
.site-footer__intro {
  max-width: 430px;
}
.site-footer__logo {
  width: 168px;
  display: block;
  margin: 0 auto 20px;
}
.site-footer__intro p {
  margin: 0;
  color: #474747;
  font-size: 1.02rem;
  line-height: 1.62;
}
.site-footer__socials {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  justify-content: center;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #19a8a0;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}
.footer-social:hover {
  transform: translateY(-2px);
  background: #14968f;
}
.footer-social svg {
  width: 19px;
  height: 19px;
}
.site-footer__info {
  display: grid;
  gap: 26px;
}
.site-footer__info-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.site-footer__info-icon {
  color: #18a6a0;
  display: inline-flex;
  margin-top: 3px;
}
.site-footer__info-icon svg {
  width: 24px;
  height: 24px;
}
.site-footer__info-item h3,
.site-footer__quicklinks h2 {
  margin: 0 0 4px;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}
.site-footer__info-item a {
  color: #2f2f2f;
  font-size: 0.98rem;
  line-height: 1.5;
}
.site-footer__quicknav {
  display: grid;
  gap: 4px;
}
.site-footer__quicklink {
  display: block;
  padding: 12px 18px;
  color: #666;
  font-size: 0.98rem;
  transition: color 180ms ease, background 180ms ease;
}
.site-footer__quicklink:hover {
  color: #1b1b1b;
}
.site-footer__quicklink--active {
  background: #19a8a0;
  color: #fff;
}
.site-footer__bar {
  background: #8dd3d5;
}
.site-footer__bar-inner {
  width: min(1140px, calc(100% - 40px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__bar-inner p,
.site-footer__credit {
  color: #174344;
  font-size: 0.98rem;
}
.site-footer__bar-inner p {
  margin: 0;
}
.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__credit strong {
  color: #1295c4;
}
.site-footer__credit img {
  width: 40px;
  height: auto;
}
.site-status {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}
.official-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 96px;
  display: grid;
  gap: 58px;
}
.official-hero,
.official-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 48px;
  align-items: center;
}
.official-hero__copy,
.official-copy {
  display: grid;
  gap: 16px;
}
.official-hero__copy h1,
.official-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.official-hero__copy p,
.official-copy p,
.official-sunrise-line p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.92;
}
.official-hero__media {
  position: relative;
}
.official-hero--villa {
  grid-template-columns: 1.22fr 0.78fr;
  align-items: center;
}
.official-hero__media--villa {
  min-height: auto;
  max-width: 440px;
  width: 100%;
  margin-left: auto;
}
.official-hero__media--villa .official-media-poster {
  min-height: 380px;
}
.official-accent-flower {
  position: absolute;
  top: -32px;
  left: -24px;
  width: clamp(90px, 12vw, 150px);
  z-index: 2;
}
.official-video,
.official-media-card img,
.official-mosaic__tile img,
.official-breakfast-grid__item img,
.destination-spot-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.official-video,
.official-media-card img {
  min-height: 390px;
  border-radius: 30px;
  box-shadow: 0 28px 58px rgba(22, 44, 70, 0.14);
}
.official-section {
  display: grid;
  gap: 26px;
}
.official-section--panel {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.96)),
    linear-gradient(
      135deg,
      rgba(20, 150, 143, 0.08),
      rgba(131, 212, 210, 0.1));
  box-shadow: 0 24px 48px rgba(18, 39, 57, 0.08);
}
.official-hero__copy--villa {
  max-width: 600px;
}
.official-hero__copy--destination {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.official-hero__copy--destination p {
  max-width: 620px;
  margin: 0 auto;
}
.official-hero__copy--gastronomy {
  align-content: start;
}
.official-hero__copy--gastronomy h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #2f3134;
  letter-spacing: -0.03em;
  margin: 0;
}
.official-headline {
  display: grid;
  gap: 10px;
}
.official-headline--centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto -8px;
}
.official-headline h1 {
  margin: 0;
  font-size: clamp(2.35rem, 3.8vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.official-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.official-mosaic__tile img {
  height: 100%;
  min-height: 270px;
  border-radius: 24px;
}
.official-breakfast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.official-breakfast-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.official-breakfast-grid__item img {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}
.official-page--villa .official-breakfast-grid__item:first-child,
.official-page--villa .official-breakfast-grid__item:nth-child(2),
.official-page--gastronomy .official-breakfast-grid__item:first-child,
.official-page--gastronomy .official-breakfast-grid__item:nth-child(4) {
  grid-column: span 2;
}
.official-page--villa .official-breakfast-grid__item:first-child img,
.official-page--villa .official-breakfast-grid__item:nth-child(2) img,
.official-page--gastronomy .official-breakfast-grid__item:first-child img,
.official-page--gastronomy .official-breakfast-grid__item:nth-child(4) img {
  aspect-ratio: 2 / 1;
}
.official-hero--destination,
.official-page--destination .official-section--split {
  grid-template-columns: 1fr;
}
.destination-spot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.destination-spot-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(22, 44, 70, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.destination-spot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(22, 44, 70, 0.12);
}
.destination-spot-card img {
  aspect-ratio: 1 / 1;
}
.destination-spot-card h3 {
  margin: 0;
  padding: 18px 18px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.official-section--destination-copy {
  max-width: 860px;
}
.spot-carousel {
  display: grid;
  gap: 22px;
}
.spot-carousel__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 26px 0 10px;
}
.spot-carousel__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.destination-spot-card--featured {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 34px 58px rgba(22, 44, 70, 0.16);
}
.spot-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.spot-carousel__controls button {
  border: 0;
  background: #fff;
  color: var(--teal-dark);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(22, 44, 70, 0.1);
  cursor: pointer;
}
.spot-carousel__controls svg {
  width: 20px;
  height: 20px;
}
.spot-carousel__dots {
  display: flex;
  gap: 10px;
}
.spot-carousel__dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: rgba(20, 150, 143, 0.22) !important;
  box-shadow: none !important;
}
.spot-carousel__dot--active {
  background: var(--teal) !important;
}
.official-breakfast-showcase {
  display: grid;
  gap: 24px;
}
.official-breakfast-showcase__hero {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #12353a;
}
.official-breakfast-showcase__backdrop {
  position: absolute;
  inset: 0;
}
.official-breakfast-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}
.official-breakfast-showcase__slide--active {
  opacity: 1;
}
.official-breakfast-showcase__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 26, 0.76) 0%,
      rgba(10, 24, 26, 0.44) 45%,
      rgba(10, 24, 26, 0.18) 100%),
    linear-gradient(
      180deg,
      rgba(7, 13, 14, 0.08) 0%,
      rgba(7, 13, 14, 0.52) 100%);
}
.official-breakfast-showcase__overlay {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  min-height: 520px;
  padding: 42px 40px;
  display: grid;
  align-content: end;
  gap: 18px;
}
.official-breakfast-showcase__overlay .section-heading {
  margin-bottom: 0;
}
.official-breakfast-showcase__overlay .section-kicker,
.official-breakfast-showcase__overlay h2,
.official-breakfast-showcase__overlay p {
  color: #fff;
}
.official-breakfast-showcase__overlay h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.official-sunrise-line {
  padding: 32px 36px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      #14968f 0%,
      #83d4d2 100%);
  box-shadow: 0 20px 40px rgba(20, 150, 143, 0.18);
}
.official-sunrise-line p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.official-page {
  width: 100%;
  margin: 0;
  padding: 0 0 96px;
  display: block;
}
.official-page--destination {
  padding-bottom: 0;
}
.page-scroll-over-hero {
  position: relative;
  overflow-x: clip;
}
.page-scroll-over-hero > .home-hero,
.page-scroll-over-hero > .destination-official-hero,
.page-scroll-over-hero > .official-gastronomy-cover,
.page-scroll-over-hero > .official-suites-cover {
  position: sticky;
  top: 110px;
}
.booking-bar-portal-container {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  z-index: 10;
}
.booking-bar-portal-container .booking-bar {
  bottom: auto;
  top: -148px;
}
@media (max-width: 980px) {
  .booking-bar-portal-container {
    height: auto;
  }
  .page-scroll-over-hero > .home-hero,
  .page-scroll-over-hero > .destination-official-hero,
  .page-scroll-over-hero > .official-gastronomy-cover,
  .page-scroll-over-hero > .official-suites-cover {
    top: 58px;
  }
}
.page-scroll-over-hero > .page-scroll-over-hero__content {
  position: relative;
  z-index: 2;
  margin-top: -92px;
  padding-top: 92px;
  padding-bottom: 0;
  background: #fff;
}
.official-page.page-scroll-over-hero,
.official-page--suites.page-scroll-over-hero {
  padding-bottom: 0;
}
.page-scroll-over-hero > .official-hero,
.page-scroll-over-hero > .official-section,
.page-scroll-over-hero > .official-amenities,
.page-scroll-over-hero > .official-headline,
.page-scroll-over-hero > .official-sunrise-line,
.page-scroll-over-hero > .official-suites-panel {
  position: relative;
  z-index: 2;
}
.official-page--gastronomy {
  padding-bottom: 0;
}
.official-page > .home-hero {
  width: 100%;
  margin: 0 0 112px;
}
.page-scroll-over-hero > .home-hero {
  margin-bottom: 0;
}
.official-gastronomy-cover {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 48px 18px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.official-gastronomy-cover__inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.official-gastronomy-cover h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.28);
}
.official-hero,
.official-amenities,
.official-section,
.official-headline,
.official-sunrise-line {
  width: min(1140px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.official-hero,
.official-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 44px;
  align-items: center;
}
.official-hero {
  margin-bottom: 88px;
}
.official-page--gastronomy .official-hero {
  margin-top: 62px;
}
.official-hero__copy,
.official-copy {
  display: grid;
  gap: 20px;
}
.official-copy__eyebrow {
  margin: 0;
  color: #000;
  font-size: 0.94rem;
  font-weight: 400;
}
.official-hero__copy h1,
.official-copy h2,
.official-headline h1 {
  margin: 0;
  color: #2f3134;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.official-hero__copy h1 {
  font-size: clamp(3rem, 4vw, 4rem);
}
.official-copy h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}
.official-headline {
  text-align: center;
  margin-bottom: 64px;
}
.official-headline h1 {
  font-size: clamp(2.8rem, 4vw, 4.15rem);
}
.official-hero__copy p,
.official-copy p,
.official-breakfast__copy p,
.official-sunrise-line p {
  margin: 0;
  color: #5c5c5c;
  font-size: 1rem;
  line-height: 1.72;
}
.official-inline-flower {
  width: 48px;
  margin-left: 12px;
  vertical-align: middle;
}
.official-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.official-media-link,
.official-media-card {
  width: 100%;
  display: block;
}
.official-media-link {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
}
.official-media-poster,
.official-media-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.official-media-poster {
  min-height: 510px;
}
.official-media-video {
  background: #000;
}
.official-media-card img {
  min-height: 430px;
}
.official-media-link__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.official-media-link__play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.official-amenities {
  margin-bottom: 88px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 168px));
  justify-content: center;
  gap: 18px 26px;
}
.official-amenity-card {
  min-height: 118px;
  padding: 26px 18px 22px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}
.official-amenity-card__icon {
  width: 44px;
  height: 44px;
  color: #111;
}
.official-amenity-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.official-amenity-card strong {
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
}
.official-section {
  margin-bottom: 88px;
}
.official-section--gastronomy .official-media-card {
  order: 1;
}
.official-section--gastronomy .official-copy {
  order: 2;
}
.official-page--gastronomy .official-media-card img,
.official-page--gastronomy .official-hero__media img,
.official-page--gastronomy .official-media-poster,
.official-page--villa .official-media-card img,
.official-page--villa .official-hero__media img,
.official-page--villa .official-media-poster {
  border-radius: 0;
}
.official-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.official-mosaic__tile img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.official-breakfast {
  display: grid;
  gap: 30px;
}
.official-breakfast__copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
}
.official-breakfast__copy h2 {
  margin: 0;
  color: #323437;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
}
.official-breakfast__copy .section-kicker {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  letter-spacing: 0.01em;
}
.official-breakfast-rail {
  overflow: hidden;
  padding-bottom: 10px;
}
.official-breakfast-rail__track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: breakfast-rail-marquee 54s linear infinite;
  will-change: transform;
}
.official-breakfast-rail--wide {
  --breakfast-rail-item-width: 280px;
}
.official-breakfast-rail:not(.official-breakfast-rail--wide) {
  --breakfast-rail-item-width: 260px;
}
.official-breakfast-rail__item {
  flex: 0 0 var(--breakfast-rail-item-width);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.official-breakfast-rail:hover .official-breakfast-rail__track,
.official-breakfast-rail:focus-within .official-breakfast-rail__track {
  animation-play-state: paused;
}
.official-breakfast-rail__item img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}
@keyframes breakfast-rail-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}
.official-section--spots {
  margin-top: 8px;
  width: calc(100% - 48px);
  max-width: none;
}
.destination-official-hero {
  height: min(60vw, 720px);
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 40px 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.destination-official-hero__inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}
.destination-official-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Literata", serif;
  font-size: clamp(3rem, 4.4vw, 3.8rem);
  font-weight: 600;
  text-align: center;
}
.official-section--destination-intro {
  margin-top: 40px;
  margin-bottom: 24px;
  text-align: center;
}
.official-section--destination-intro h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
}
.spot-carousel {
  display: grid;
  gap: 24px;
}
.spot-carousel__viewport {
  overflow: hidden;
}
.spot-carousel__track {
  display: flex;
  gap: 26px;
  transition: transform 1800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.spot-carousel__track--instant {
  transition: none;
}
.spot-carousel__track .destination-spot-card {
  flex: 0 0 calc((100% - (26px * (var(--slides-per-view) - 1))) / var(--slides-per-view));
}
.destination-spot-card {
  background: #fff;
  position: relative;
  overflow: visible;
  box-shadow: none;
}
.destination-spot-card:hover {
  transform: none;
  box-shadow: none;
}
.destination-spot-card:hover,
.destination-spot-card:focus-within {
  z-index: 4;
}
.destination-spot-card__button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.destination-spot-card img {
  width: min(100%, 340px);
  margin: 0 auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.destination-spot-card:hover img,
.destination-spot-card:focus-within img {
  transform: scale(1.06);
}
.destination-spot-card h3 {
  margin: 0;
  padding: 18px 12px 0;
  font-size: 1.38rem;
  font-weight: 700;
  text-align: center;
}
.spot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 14, 24, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.spot-lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
  display: block;
  overflow: visible;
}
.spot-lightbox__figure {
  margin: 0;
  display: block;
  overflow: visible;
}
.spot-lightbox__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(86vw, 960px);
  max-height: min(78vh, 920px);
  overflow: visible;
  cursor: grab;
  user-select: none;
}
.spot-lightbox__figure img {
  width: auto;
  max-width: min(86vw, 960px);
  max-height: min(78vh, 920px);
  display: block;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform-origin: center center;
  transition: transform 180ms ease-out;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}
.spot-lightbox__media--dragging {
  cursor: grabbing;
}
.spot-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  background: rgba(7, 14, 24, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.spot-lightbox__close,
.spot-lightbox__nav {
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.spot-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.spot-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.spot-lightbox__nav--prev {
  left: 18px;
}
.spot-lightbox__nav--next {
  right: 18px;
}
.spot-lightbox__nav svg {
  width: 24px;
  height: 24px;
}
.official-section--destination-reservoir {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 38%);
  align-items: start;
  gap: 0;
  width: min(90%, 1650px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px 70px;
  overflow: visible;
}
.official-destination-image {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-right: -78px;
}
.official-destination-image img {
  width: 100%;
  min-height: 700px;
  display: block;
  object-fit: contain;
}
.official-copy--destination-card {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-top: 94px;
  margin-left: -110px;
  padding: 54px 40px 28px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}
.official-copy--destination-card .official-copy__eyebrow {
  font-size: 2.2rem;
  font-family: "Times New Roman", serif;
  font-weight: 600;
}
.official-copy--destination-card h2 {
  font-family: "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
}
.official-copy--destination-card p {
  color: #414141;
  font-weight: 300;
}
.official-sunrise-banner {
  min-height: 600px;
  display: grid;
  place-items: center;
  background-position: center -160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.official-sunrise-banner__inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.official-sunrise-banner__icon {
  color: #fff;
}
.official-sunrise-banner__icon svg {
  width: 90px;
  height: 90px;
  display: block;
}
.official-sunrise-banner h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: "Literata", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}
.official-page--suites {
  width: 100%;
  margin: 0;
  padding: 0 0 40px;
  display: grid;
  gap: 28px;
}
.official-suites-cover,
.official-suites-panel {
  width: min(1046px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.official-suites-cover {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}
.official-suites-cover__title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.official-suites-cover__title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.official-suites-panel {
  width: min(1280px, calc(100% - 48px));
  margin-top: 58px;
  margin-bottom: 96px;
  padding: 26px 26px 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.official-suites-panel__header {
  margin-bottom: 24px;
}
.official-suites-panel__header .official-copy__eyebrow {
  margin: 0 0 18px;
  color: #5d6d7e;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.official-suites-panel__header h2 {
  margin: 0;
  color: #2d3540;
  font-size: 3rem;
  line-height: 1.14;
  font-weight: 300;
}
.official-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.official-suite-shell {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.official-suite-shell__frame {
  margin-top: 60px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.51);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.04);
}
.official-suite-card {
  background: #fff;
}
.official-suite-card img {
  width: 100%;
  height: 188px;
  display: block;
  object-fit: cover;
}
.official-suite-card__body {
  padding: 0 14px 16px;
}
.official-suite-card__body h3 {
  margin: 12px 0 14px;
  color: #222;
  font-size: 1.08rem;
  font-weight: 400;
}
.official-suite-card__divider {
  width: 100%;
  height: 1px;
  background: #ececec;
}
.official-suite-card__body ul {
  margin: 0;
  padding: 10px 0 12px;
  list-style: none;
}
.official-suite-card__body li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #ececec;
  color: #5f6f82;
  font-size: 0.98rem;
}
.official-suite-card .suite-feature-icon {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex: 0 0 auto;
}
.official-suite-card__body li:last-child {
  border-bottom: 0;
}
.official-suite-card__body li span:last-child {
  line-height: 1.35;
}
.official-suite-card__body a {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.official-page--suite-detail {
  width: 100%;
  margin: 0;
  padding: 40px 0 56px;
}
.official-suite-detail {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 28px 36px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.official-suite-detail__header {
  margin-bottom: 34px;
}
.official-suite-detail__header h1,
.official-suite-detail__content h2 {
  margin: 0;
  color: #1f2430;
  font-family: "Literata", serif;
  font-weight: 600;
}
.official-suite-detail__header h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}
.official-suite-detail__content h2 {
  font-size: 1.8rem;
}
.official-suite-detail__divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 28px;
  background: #e8e8e8;
}
.official-suite-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 42px;
  align-items: start;
}
.suite-detail-gallery {
  display: grid;
  gap: 14px;
}
.suite-detail-gallery__stage {
  position: relative;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.suite-detail-gallery__stage img {
  width: 100%;
  height: min(54vw, 640px);
  min-height: 420px;
  display: block;
  object-fit: cover;
}
.suite-detail-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.suite-detail-gallery__nav--prev {
  left: 16px;
}
.suite-detail-gallery__nav--next {
  right: 16px;
}
.suite-detail-gallery__nav svg {
  width: 22px;
  height: 22px;
}
.suite-detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
}
.suite-detail-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.suite-detail-gallery__thumb:hover {
  transform: translateY(-2px);
}
.suite-detail-gallery__thumb--active {
  border-color: var(--teal);
}
.suite-detail-gallery__thumb img {
  width: 100%;
  height: 82px;
  display: block;
  object-fit: cover;
}
.official-suite-detail__content {
  display: grid;
  gap: 0;
}
.official-suite-detail__content p {
  margin: 0 0 16px;
  color: #525252;
  line-height: 1.8;
}
.official-suite-detail__amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.official-suite-detail__amenity {
  min-height: 116px;
  padding: 22px 16px 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}
.official-suite-detail__amenity-icon {
  width: 44px;
  height: 44px;
  color: #111;
}
.official-suite-detail__amenity-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.official-suite-detail__amenity strong {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}
.official-suite-detail__cta {
  width: 100%;
  min-height: 52px;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 980px) {
  .site-header__inner {
    width: calc(100% - 24px);
  }
  .site-header__meta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    margin: 0;
    justify-self: start;
  }
  .site-header__inner--nav {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 12px;
  }
  .site-header__top {
    display: none;
  }
  .site-header__navwrap {
    padding-bottom: 0;
    z-index: 20010;
  }
  .site-header__mobile-brand {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    padding: 0;
  }
  .site-header__mobile-brand img {
    width: 102px;
    display: block;
    object-fit: contain;
  }
  .site-header__mobile-actions {
    display: flex;
    align-items: center;
    justify-self: end;
  }
  .site-header__actions--desktop {
    display: none;
  }
  .site-header__links {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(67, 199, 196, 0.98);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
    z-index: 20012;
  }
  .site-header__links--open {
    display: flex;
  }
  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__link {
    padding: 12px 14px;
    text-align: left;
  }
  .site-nav__link--active {
    padding: 12px 14px;
  }
  .header-contact-button--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
  }
  .home-hero__image {
    height: 400px;
  }
  .site-header__glassbar {
    display: none;
  }
  .booking-bar {
    position: static;
    transform: none;
    width: min(340px, calc(100% - 40px));
    margin: -10px auto 0;
    padding: 16px 14px 14px;
  }
  .booking-bar__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }
  .booking-bar__field--checkin,
  .booking-bar__field--checkout,
  .booking-bar__button {
    grid-column: 1 / -1;
  }
  .booking-calendar {
    width: 100%;
    min-width: 0;
  }
  .booking-bar__button {
    width: 100%;
  }
  .resort-cards,
  .suite-showcase-grid,
  .suite-catalog-grid,
  .review-strip__grid,
  .hero-grid,
  .feature-grid,
  .suite-preview-grid,
  .suite-page-grid,
  .gallery-grid,
  .split-gallery,
  .content-panel--split,
  .destination-story {
    grid-template-columns: 1fr;
  }
  .destination-section {
    padding: 54px 0 68px;
    margin-top: 34px;
  }
  .dest-decor--shell {
    width: 100px;
    height: 100px;
    left: -20px;
    top: 5%;
  }
  .dest-decor--palm {
    width: 150px;
    height: 150px;
    right: -30px;
    top: -20px;
  }
  .dest-decor--waves {
    width: 130px;
    left: 2%;
    bottom: 22%;
    opacity: 0.35;
  }
  .dest-decor--starfish {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: 4%;
  }
  .suites-showcase__overlay {
    position: relative;
    inset: auto;
    width: calc(100% - 24px);
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .suites-showcase__overlay h2 {
    margin-bottom: 34px;
  }
  .suite-showcase-grid .suite-highlight-shell:nth-child(2) {
    transform: none;
  }
  .suite-highlight-shell {
    padding: 14px;
  }
  .suites-showcase {
    min-height: 0;
    overflow: visible;
  }
  .suite-highlight-shell {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    overflow: visible;
  }
  .suite-highlight-shell::before {
    content: none;
  }
  .suite-highlight-shell__backdrop {
    display: block;
    height: 168px;
    margin: 0 4px;
    background: var(--suite-shell-backdrop) center top / cover no-repeat;
  }
  .suite-highlight-card {
    position: relative;
    z-index: 1;
    margin: -78px 0 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }
  .suites-showcase::after {
    background-image: none;
  }
  .suites-showcase::before {
    background: none;
  }
  .suites-showcase__overlay h2 {
    color: var(--ink);
    text-shadow: none;
  }
  .suites-showcase::after {
    background-attachment: scroll;
  }
  .cta-banner {
    background-attachment: scroll;
  }
  .suites-showcase__overlay h2,
  .cta-banner__overlay h2,
  .destination-story__copy h2,
  .wp-page__hero h1,
  .hero-copy h2,
  .section-heading h2,
  .split-copy h2 {
    font-size: 2rem;
  }
  .destination-story__gallery {
    min-height: 420px;
  }
  .destination-story__image--tall {
    display: none;
  }
  .destination-story__image--square {
    top: 0;
    right: auto;
    left: 50%;
    width: min(88vw, 360px);
    height: min(88vw, 360px);
    transform: translate3d(-50%, 0, 0) !important;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__intro {
    max-width: none;
  }
  .site-footer__bar-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .official-page {
    padding: 0 0 72px;
  }
  .official-page--suites {
    padding: 0 0 30px;
    gap: 20px;
  }
  .official-page.page-scroll-over-hero,
  .official-page--suites.page-scroll-over-hero {
    padding-bottom: 0;
  }
  .official-page > .home-hero {
    margin-bottom: 84px;
  }
  .official-hero,
  .official-section--split,
  .official-mosaic,
  .spot-carousel__track,
  .official-amenities {
    grid-template-columns: 1fr;
  }
  .official-hero,
  .official-amenities,
  .official-section,
  .official-headline,
  .official-sunrise-line {
    width: calc(100% - 24px);
  }
  .official-hero {
    gap: 26px;
    margin-bottom: 64px;
  }
  .official-gastronomy-cover {
    min-height: 420px;
    background-attachment: scroll;
  }
  .official-page--gastronomy .official-hero {
    margin-top: 40px;
  }
  .official-hero__copy h1,
  .official-headline h1,
  .official-breakfast__copy h2 {
    font-size: 2.35rem;
  }
  .official-copy h2 {
    font-size: 1.55rem;
  }
  .official-media-poster,
  .official-media-card img {
    min-height: 280px;
  }
  .official-amenities {
    gap: 16px;
  }
  .official-inline-flower {
    width: 34px;
    margin-left: 8px;
  }
  .official-breakfast-rail,
  .official-breakfast-rail--wide {
    --breakfast-rail-item-width: 220px;
  }
  .official-breakfast-rail__item img {
    height: 180px;
  }
  .destination-official-hero {
    height: 480px;
    min-height: 380px;
  }
  .destination-official-hero h1 {
    font-size: 2rem;
  }
  .official-section--destination-intro {
    margin-top: 22px;
  }
  .page-scroll-over-hero > .page-scroll-over-hero__content {
    margin-top: -44px;
    padding-top: 44px;
    padding-bottom: 0;
  }
  .official-section--spots {
    width: calc(100% - 24px);
  }
  .spot-carousel__track .destination-spot-card {
    flex-basis: calc((100% - 26px) / var(--slides-per-view));
  }
  .official-section--destination-intro h2 {
    font-size: 1.45rem;
  }
  .destination-spot-card img {
    width: min(100%, 220px);
  }
  .destination-spot-card h3 {
    font-size: 1rem;
  }
  .spot-lightbox {
    padding: 18px;
  }
  .spot-lightbox__dialog {
    width: 100%;
  }
  .spot-lightbox__figure img {
    max-width: min(92vw, 560px);
    max-height: 66vh;
  }
  .spot-lightbox__media {
    max-width: min(92vw, 560px);
    max-height: 66vh;
  }
  .spot-lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.92);
  }
  .spot-lightbox__nav {
    top: 50%;
  }
  .spot-lightbox__nav--prev {
    left: 8px;
  }
  .spot-lightbox__nav--next {
    right: 8px;
  }
  .spot-lightbox__caption {
    bottom: 12px;
    max-width: calc(100% - 96px);
    white-space: normal;
    font-size: 1rem;
  }
  .official-section--destination-reservoir {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 0 0 20px;
  }
  .official-destination-image {
    margin-right: 0;
  }
  .official-destination-image img {
    min-height: 300px;
  }
  .official-copy--destination-card {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }
  .official-copy--destination-card .official-copy__eyebrow {
    font-size: 1.9rem;
  }
  .official-copy--destination-card h2 {
    font-size: 1.2rem;
  }
  .official-sunrise-banner {
    min-height: 500px;
    background-attachment: scroll;
    background-position: -170px 0;
  }
  .official-sunrise-banner__inner {
    width: calc(100% - 24px);
    gap: 0;
    margin-top: -97px;
  }
  .official-sunrise-banner__icon svg {
    width: 76px;
    height: 76px;
  }
  .official-sunrise-banner h2 {
    font-size: 1.15rem;
    line-height: 1.5;
  }
  .official-suites-cover,
  .official-suites-panel {
    width: calc(100% - 24px);
  }
  .home-hero--suites .home-hero__image--suites {
    height: 420px;
    min-height: 320px;
  }
  #suites-booking-portal .booking-bar {
    bottom: 10px;
  }
  #suites-booking-portal .booking-bar__panel {
    width: calc(100% - 24px);
    padding: 16px 14px 14px;
  }
  .official-suites-cover__title h1,
  .official-suites-panel__header h2 {
    font-size: 2.15rem;
  }
  .official-suites-panel {
    margin-top: 34px;
    margin-bottom: 72px;
  }
  .official-suites-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .official-page--suite-detail {
    padding: 24px 0 36px;
  }
  .official-suite-detail {
    width: calc(100% - 24px);
    padding: 22px 16px 24px;
  }
  .official-suite-detail__grid,
  .official-suite-detail__amenities {
    grid-template-columns: 1fr;
  }
  .official-suite-detail__grid {
    gap: 28px;
  }
  .official-suite-detail__header h1,
  .official-suite-detail__content h2 {
    font-size: 1.8rem;
  }
  .suite-detail-gallery__stage img {
    height: 360px;
    min-height: 280px;
  }
  .suite-detail-gallery__thumb img {
    height: 72px;
  }
  .official-suite-shell {
    padding-top: 120px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    background-position: center top;
  }
  .official-suite-shell__frame {
    margin-top: 0;
    padding: 15px;
  }
  .official-suite-card img {
    height: 220px;
  }
}
@media (max-width: 560px) {
  .menu-toggle {
    padding: 0 8px;
    gap: 7px;
  }
  .menu-toggle__label {
    font-size: 0.96rem;
  }
  .site-header__mobile-brand img {
    width: 94px;
  }
  .header-language--mobile {
    width: 40px;
    height: 40px;
  }
  .header-language--mobile .header-globe {
    width: 40px;
    height: 40px;
  }
}
.home-hero__overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.48) 100%);
  z-index: 10;
  text-align: center;
  padding: 20px;
}
.home-hero__text-box {
  max-width: 800px;
  color: #ffffff;
}
.home-hero__text-box h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.home-hero__text-box p {
  font-size: clamp(1.02rem, 2.1vw, 1.3rem);
  font-weight: 400;
  margin: 0 0 32px;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.home-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.24s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 170px;
}
.hero-btn--primary {
  background: var(--teal);
  color: #ffffff;
  border: 1px solid var(--teal);
}
.hero-btn--primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(34, 184, 179, 0.3);
}
.hero-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-btn--outline:hover {
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.2);
}
.villa-features {
  max-width: 1100px;
  margin: 90px auto 60px;
  padding: 0 20px;
}
.villa-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.villa-feature-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 194, 187, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.villa-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(66, 194, 187, 0.12);
  border-color: rgba(66, 194, 187, 0.2);
}
.villa-feature-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(66, 194, 187, 0.08);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.villa-feature-card:hover .villa-feature-card__icon {
  background: var(--teal);
  color: #ffffff;
  transform: scale(1.08);
}
.villa-feature-card__icon svg {
  width: 28px;
  height: 28px;
}
.villa-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}
.villa-feature-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.cta-banner__text {
  max-width: 640px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 auto 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.24s ease;
  min-width: 200px;
}
.cta-btn-link--whatsapp {
  background: #25d366;
  color: #ffffff;
}
.cta-btn-link--whatsapp:hover {
  background: #1ebd57;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}
.cta-btn-link--suites {
  background: var(--teal);
  color: #ffffff;
}
.cta-btn-link--suites:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(66, 194, 187, 0.25);
}
@media (max-width: 980px) {
  .villa-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .home-hero__text-box h1 {
    font-size: 1.65rem;
    margin-bottom: 8px;
  }
  .home-hero__text-box p {
    font-size: 0.96rem;
    margin-bottom: 20px;
    line-height: 1.35;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.84rem;
    min-width: 150px;
  }
  .home-hero__overlay-content {
    padding: 16px;
  }
}
@media (max-width: 560px) {
  .villa-features-grid {
    grid-template-columns: 1fr;
  }
  .villa-features {
    margin: 60px auto 40px;
  }
}
.gastronomy-gallery-section {
  max-width: 1100px;
  margin: 90px auto 60px;
  padding: 0 20px;
}
.gastronomy-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.g-gallery__left {
  display: flex;
}
.g-gallery__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.g-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 220px;
  cursor: pointer;
}
.g-gallery__item--large {
  width: 100%;
  min-height: 460px;
}
.g-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.48s ease;
}
.g-gallery__item:hover img {
  transform: scale(1.05);
}
.g-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.55) 100%);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.95;
  pointer-events: none;
}
.section-intro-text {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}
.villa-features--breakfast {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .gastronomy-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .g-gallery__item--large {
    min-height: 320px;
  }
  .g-gallery__right {
    gap: 16px;
  }
  .g-gallery__item {
    min-height: 160px;
  }
}
body:has(.maintenance-page) {
  background:
    radial-gradient(
      circle at top,
      rgba(72, 198, 190, 0.24),
      transparent 34%),
    radial-gradient(
      circle at 20% 80%,
      rgba(245, 160, 194, 0.14),
      transparent 28%),
    linear-gradient(
      135deg,
      #061418 0%,
      #0a1e22 42%,
      #0f2b2f 100%);
  color: #f7fbfb;
}
.maintenance-page {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}
.maintenance-page__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.maintenance-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
}
.maintenance-page__orb--one {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -90px;
  background:
    radial-gradient(
      circle,
      rgba(66, 194, 187, 0.42),
      rgba(66, 194, 187, 0));
}
.maintenance-page__orb--two {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 16%;
  background:
    radial-gradient(
      circle,
      rgba(245, 160, 194, 0.3),
      rgba(245, 160, 194, 0));
}
.maintenance-page__orb--three {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: 18%;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0));
}
.maintenance-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 18, 20, 0.72),
      rgba(7, 18, 20, 0.52));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.maintenance-card__logo {
  width: min(210px, 60vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.22));
}
.maintenance-card__eyebrow {
  margin: 0;
  color: #7de1db;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.maintenance-card h1 {
  margin: 0;
  color: #fff;
  font-family: "Literata", serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.maintenance-card__text {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(247, 251, 251, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.85;
}
.maintenance-card__text--strong {
  color: #fff;
  font-weight: 600;
}
.maintenance-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.maintenance-card__actions a {
  min-width: 190px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.maintenance-card__actions a:hover {
  transform: translateY(-2px);
  background: rgba(66, 194, 187, 0.2);
  border-color: rgba(125, 225, 219, 0.4);
}
@media (max-width: 720px) {
  .maintenance-page {
    padding: 18px;
  }
  .maintenance-card {
    border-radius: 24px;
    padding: 26px 20px 24px;
    gap: 14px;
  }
  .maintenance-card__actions {
    width: 100%;
  }
  .maintenance-card__actions a {
    width: 100%;
    min-width: 0;
  }
}
