/* 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 {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #7e7e7e;
  font: inherit;
  font-size: 0.98rem;
}
.booking-bar__field select {
  width: 100%;
  height: 48px;
  padding: 0 32px 0 14px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #7e7e7e;
  font: inherit;
  font-size: 0.98rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.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;
  top: calc(100% + 8px);
  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: 100%;
  margin: 64px auto 0;
  overflow: hidden;
}
.review-strip__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px;
}
.review-strip__header strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--teal-dark);
}
.review-strip__stars {
  display: block;
  color: #f2b400;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.review-strip__header p {
  margin: 8px 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: 320px;
    --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: 160px;
  pointer-events: none;
  z-index: 5;
}
.review-strip__fade-left {
  left: 0;
  background:
    linear-gradient(
      to right,
      #ffffff 15%,
      rgba(255, 255, 255, 0) 100%);
}
.review-strip__fade-right {
  right: 0;
  background:
    linear-gradient(
      to left,
      #ffffff 15%,
      rgba(255, 255, 255, 0) 100%);
}
.villa-section-wrapper--white .review-strip__fade-left {
  background:
    linear-gradient(
      to right,
      #ffffff 15%,
      rgba(255, 255, 255, 0) 100%);
}
.villa-section-wrapper--white .review-strip__fade-right {
  background:
    linear-gradient(
      to left,
      #ffffff 15%,
      rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 768px) {
  .review-strip__fade-left,
  .review-strip__fade-right {
    width: 60px;
  }
}
.review-strip__carousel-track {
  display: flex;
  width: max-content;
  animation: reviewMarquee 120s linear infinite;
}
.review-strip__carousel-track:hover {
  animation-play-state: paused;
}
.review-strip__carousel-group {
  display: flex;
  align-items: flex-start;
  gap: var(--card-gap);
  padding-right: var(--card-gap);
}
.review-card {
  flex: 0 0 var(--card-width);
  width: var(--card-width);
  padding: 24px;
  border-radius: 16px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(18, 38, 56, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  align-self: flex-start;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 38, 56, 0.08);
  border-color: var(--teal);
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0faf7;
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(66, 194, 187, 0.15);
}
.review-card__meta strong {
  display: block;
  font-size: 0.95rem;
  color: #333333;
}
.review-card__meta small {
  display: block;
  font-size: 0.8rem;
  color: #8b8b8b;
}
.review-card__stars {
  color: #f2b400;
  font-size: 1rem;
  margin-bottom: 10px;
}
.review-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.5em * 10);
}
@keyframes reviewMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.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-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 120px;
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid rgba(197, 176, 151, 0.2);
  border-bottom: 1px solid rgba(197, 176, 151, 0.2);
  z-index: 1;
}
.destination-story {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}
.destination-story__logo {
  width: 120px;
  display: block;
  margin: 0 auto 20px;
}
.destination-story__copy h2 {
  margin: 0 0 16px;
  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;
  font-size: clamp(2.3rem, 3.5vw, 2.95rem);
  font-weight: 600;
  color: #1f4845;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
}
.destination-story__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto 28px;
  width: 100%;
  max-width: 480px;
}
.destination-story__divider-line {
  flex: 1;
  height: 1px;
  background: rgba(197, 176, 151, 0.4);
}
.destination-story__divider-shell {
  width: 20px;
  height: 20px;
  color: #c5b097;
  flex-shrink: 0;
}
.destination-story__eyebrow {
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c5b097;
  font-weight: 600;
  margin: -16px auto 32px;
}
.destination-story__paragraph {
  margin: 0 auto 18px;
  max-width: 580px;
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: left;
}
.destination-story__paragraph--kicker {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: #1f4845;
  line-height: 1.5;
  margin-bottom: 24px;
}
.destination-story__paragraph--closing {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: #1f4845;
  margin-top: 24px;
  margin-bottom: 0;
}
.destination-story__gallery {
  position: relative;
  min-height: 570px;
  --destination-tall-y: 0px;
  --destination-square-x: 0px;
}
.destination-story__image {
  position: absolute;
  object-fit: cover;
  padding: 14px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(117, 102, 85, 0.18), 0 5px 12px rgba(0, 0, 0, 0.08);
  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--villa .page-scroll-over-hero__content,
.official-page--destination .page-scroll-over-hero__content {
  background: #f0faf7;
}
.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;
}
.destination-spots-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 20px 20px;
}
.villa-section-wrapper--spots {
  padding: 30px 0 10px !important;
}
.destination-spots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  align-items: flex-start;
}
.destination-spots-title-block {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 20px;
}
.destination-spots-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0;
}
.destination-spots-title {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.destination-spots-items {
  display: contents;
}
.destination-spot-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.destination-spot-circle-button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.destination-spot-circle-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}
.destination-spot-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.destination-spot-circle-button:hover .destination-spot-circle-image {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(66, 194, 187, 0.15);
}
.destination-spot-circle-button:hover .destination-spot-circle-image img {
  transform: scale(1.06);
}
.destination-spot-circle-item h4 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.destination-spot-circle-item p {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}
@media (max-width: 1024px) {
  .destination-spots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
  .destination-spots-title-block {
    grid-column: span 3;
    padding-right: 0;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .destination-spots-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: span 3;
    gap: 36px 20px;
  }
}
@media (max-width: 768px) {
  .destination-spots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-spots-title-block {
    grid-column: span 2;
  }
  .destination-spots-items {
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 2;
  }
  .destination-spot-circle-image {
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  .destination-spots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-spots-title-block {
    grid-column: span 2;
  }
  .destination-spots-items {
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 2;
    gap: 32px 16px;
  }
  .destination-spot-circle-item h3 {
    font-size: 0.95rem;
  }
}
.spot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30000;
  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;
  z-index: 10;
}
.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: 500px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), var(--sunrise-bg);
  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: "Montserrat", sans-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-image: var(--suite-backdrop);
  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;
    width: 280px;
    max-width: calc(100vw - 24px);
    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: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 1;
  }
  .site-header__glassline {
    background: rgba(255, 255, 255, 0.58);
    box-shadow: none;
  }
  .booking-bar {
    position: relative;
    left: auto;
    transform: none;
    z-index: 30;
    width: min(340px, calc(100% - 40px));
    margin: -130px auto 0;
    padding: 16px 14px 14px;
  }
  .booking-bar-portal-container .booking-bar {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    bottom: auto;
    margin: -130px auto 0;
  }
  .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: 0;
  }
  .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: none !important;
  }
  .suite-highlight-card {
    position: relative;
    z-index: 1;
    margin: 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: fixed;
  }
  .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);
  }
  .official-section--destination-intro h2 {
    font-size: 1.45rem;
  }
  .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: 380px;
    background-attachment: fixed;
    background-position: center center;
    background-image: var(--sunrise-bg) !important;
  }
  .official-sunrise-banner__inner {
    width: calc(100% - 24px);
    gap: 0;
    margin-top: 0;
  }
  .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 {
    background-image: none !important;
    padding: 0;
  }
  .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;
  }
  .header-language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 90px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .header-language--mobile.header-language--open .header-language-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-language-dropdown__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 150ms ease, color 150ms ease;
    text-align: left;
  }
  .header-language-dropdown__item:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  .header-language-dropdown__item--active {
    background: var(--teal) !important;
    color: #ffffff !important;
  }
  .header-language-dropdown__flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.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;
  }
}
.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;
}
.villa-section-wrapper--teal-bg {
  background-color: var(--teal-dark) !important;
  padding: 90px 0;
  width: 100%;
}
.villa-section-wrapper--teal-bg .villa-features {
  margin: 0 auto;
}
.villa-section-wrapper--teal-bg .villa-features--breakfast {
  margin-bottom: 0;
}
.villa-section-wrapper--teal-bg .section-kicker {
  color: rgba(255, 255, 255, 0.9) !important;
}
.villa-section-wrapper--teal-bg .section-heading h2 {
  color: #ffffff !important;
}
.villa-section-wrapper--teal-bg .section-intro-text {
  color: rgba(255, 255, 255, 0.85) !important;
}
@media (max-width: 991px) {
  .villa-section-wrapper--teal-bg {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .villa-section-wrapper--teal-bg {
    padding: 58px 0;
  }
}
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;
}
.destination-official-hero {
  height: 100vh;
  min-height: 640px;
  max-height: 800px;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.destination-official-hero__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  z-index: 2;
}
.destination-official-hero__content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.destination-official-hero__cursive {
  font-family: "Pinyon Script", cursive;
  font-size: clamp(3.8rem, 7.5vw, 6.2rem);
  color: #ffffff;
  line-height: 0.8;
  margin-bottom: 4px;
  font-weight: 400;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.destination-official-hero__subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.45em;
  font-weight: 600;
  text-transform: uppercase;
}
.destination-official-hero__wave {
  opacity: 0.7;
  font-size: 1.1rem;
}
.destination-official-hero__tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}
@media (min-width: 769px) {
  .destination-official-hero__tagline {
    white-space: nowrap;
  }
}
.destination-official-hero__description {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 36px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.destination-official-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.destination-official-hero__actions .hero-btn--primary {
  background-color: var(--teal);
  color: #ffffff !important;
  border: 1px solid var(--teal);
}
.destination-official-hero__actions .hero-btn--primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.destination-official-hero__actions .hero-btn--outline {
  background-color: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.destination-official-hero__actions .hero-btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.destination-official-hero__actions .play-icon {
  margin-right: 8px;
  font-size: 0.8rem;
}
.official-page--destination .page-scroll-over-hero__content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: #ffffff !important;
}
.villa-section-wrapper--destination-icons {
  background-color: #ffffff !important;
  padding: 40px 0 !important;
  width: 100%;
}
.destination-icon-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.destination-icon-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.destination-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.destination-icon-item:hover {
  transform: translateY(-3px);
}
.destination-icon-item__icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(66, 194, 187, 0.08);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.destination-icon-item:hover .destination-icon-item__icon-wrapper {
  background: var(--teal);
  color: #ffffff;
  transform: scale(1.06);
}
.destination-icon-item__icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.6;
  display: block;
}
.destination-icon-item__icon-wrapper svg.svg-filled {
  stroke: none !important;
  fill: currentColor;
}
.destination-icon-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 10px;
}
.destination-icon-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #666666;
  margin: 0;
  max-width: 180px;
}
.destination-welcome {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 30px;
}
#welcome {
  padding-bottom: 30px;
}
.destination-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.destination-welcome__media {
  width: 100%;
}
.destination-welcome__image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.destination-welcome__image-container img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .destination-welcome__image-container img {
    height: 300px;
  }
}
.destination-welcome__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.destination-welcome__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 20px;
}
.destination-welcome__text:last-of-type {
  margin-bottom: 0;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.video-lightbox__container {
  position: relative;
  width: min(90vw, 1024px);
  aspect-ratio: 16/9;
  background-color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.video-lightbox__container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.video-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
}
.video-lightbox__close:hover {
  opacity: 1;
  transform: scale(1.15);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .destination-icon-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }
  .destination-welcome__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .destination-official-hero {
    height: auto !important;
    min-height: 90vh;
    padding: 120px 20px 60px !important;
    position: relative;
    margin-bottom: 210px !important;
  }
  .destination-official-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .destination-official-hero__content {
    align-items: center;
    text-align: center;
  }
  .destination-icon-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .destination-welcome__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .destination-welcome__copy {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .destination-icon-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .destination-official-hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .destination-official-hero__actions .hero-btn {
    width: 100%;
    max-width: 280px;
  }
}
.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;
  }
}
.villa-section-wrapper {
  width: 100%;
  padding: 100px 0;
  position: relative;
}
.villa-section-wrapper--cream {
  background-color: #f0faf7;
  border-bottom: 1px solid rgba(66, 194, 187, 0.04);
}
.villa-section-wrapper--white {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(66, 194, 187, 0.04);
}
.villa-section-wrapper--dark {
  background-color: #209b96;
  color: #e2f1f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.villa-section-wrapper > section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.official-page--villa .villa-section-wrapper--white {
  background: #ffffff;
  border-bottom: 1px solid rgba(66, 194, 187, 0.04);
}
.official-page--villa .villa-section-wrapper--white .villa-feature-card {
  background: #ffffff;
  border: none;
  box-shadow: 0 12px 36px rgba(18, 38, 56, 0.05), 0 2px 10px rgba(18, 38, 56, 0.02);
  border-radius: 12px;
  padding: 42px 30px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.official-page--villa .villa-section-wrapper--white .villa-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 38, 56, 0.12);
  border: none;
}
.section-title-serif {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.title-wave-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  color: var(--teal);
}
.official-page--villa .villa-feature-card h3 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.villa-leisure {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 62px;
}
.section-heading--centered {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-heading--centered h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  font-weight: 300;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.villa-leisure-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px auto 10px;
  max-width: 800px;
}
.villa-leisure-tab-btn {
  background: transparent;
  border: 1px solid rgba(66, 194, 187, 0.15);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.villa-leisure-tab-btn:hover {
  background: rgba(66, 194, 187, 0.05);
  color: var(--teal-dark);
  border-color: var(--teal);
}
.villa-leisure-tab-btn--active {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(66, 194, 187, 0.35);
  font-weight: 600;
}
@media (max-width: 576px) {
  .villa-leisure-tabs {
    gap: 8px;
    padding: 0 16px;
    margin: -5px auto 5px;
  }
  .villa-leisure-tab-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}
.villa-leisure-gallery {
  column-count: 4;
  column-gap: 16px;
  width: 100%;
}
.villa-gallery-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(18, 38, 56, 0.09);
  border: 3px solid #ffffff;
  background-color: #f0faf7;
  cursor: pointer;
}
.villa-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.villa-gallery-item:hover img {
  transform: scale(1.05);
}
.villa-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 20, 24, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.villa-lightbox__content {
  position: relative;
  max-width: min(1200px, 90vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.villa-lightbox__content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  border: 4px solid #ffffff;
  animation: lightboxFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.villa-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.villa-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--teal);
  transform: scale(1.05);
}
.villa-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.villa-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--teal);
  transform: translateY(-50%) scale(1.05);
}
.villa-lightbox__arrow--prev {
  left: 32px;
  padding-right: 4px;
}
.villa-lightbox__arrow--next {
  right: 32px;
  padding-left: 4px;
}
.villa-lightbox__counter {
  position: absolute;
  bottom: 24px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.villa-leisure-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.villa-leisure-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 26px;
  border: 1px solid rgba(66, 194, 187, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.015);
  transition: all 0.3s ease;
}
.villa-leisure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(66, 194, 187, 0.08);
  border-color: rgba(66, 194, 187, 0.22);
}
.villa-leisure-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px 0;
  color: var(--teal-dark);
  position: relative;
  display: inline-block;
}
.villa-leisure-card h4::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
}
.villa-leisure-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.official-section--split .official-media-card {
  position: relative;
}
.official-media-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(18, 38, 56, 0.12);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease;
}
.official-media-frame:hover {
  transform: scale(1.01) translateY(-2px);
}
.official-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 410px !important;
  display: block;
}
.official-section--villa-cumuru .official-media-card::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: rgba(66, 194, 187, 0.1);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}
.official-section--villa-gastronomy .official-media-card::after {
  content: "";
  position: absolute;
  top: 18px;
  left: -18px;
  right: 18px;
  bottom: -18px;
  background: rgba(245, 160, 194, 0.12);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}
.villa-section-wrapper--dark .official-copy h2 {
  color: #ffffff;
}
.villa-section-wrapper--dark .official-copy p {
  color: rgba(255, 255, 255, 0.82);
}
.official-copy__eyebrow--light {
  color: var(--pink) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem !important;
}
.cta-button--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  background: transparent !important;
  color: #ffffff !important;
  text-shadow: none !important;
}
.cta-button--outline-light:hover {
  background: #ffffff !important;
  color: var(--teal-dark) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}
@media (max-width: 991px) {
  .villa-section-wrapper {
    padding: 70px 0;
  }
  .villa-leisure-gallery {
    column-count: 3;
    column-gap: 12px;
  }
  .villa-gallery-item {
    margin-bottom: 12px;
    border-radius: 12px;
  }
  .villa-leisure-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .official-section--split .official-media-card::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .villa-section-wrapper {
    padding: 58px 0;
  }
  .villa-leisure-gallery {
    column-count: 2;
    column-gap: 10px;
  }
  .villa-gallery-item {
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    border-width: 2px;
  }
  .villa-leisure-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .official-media-frame img {
    min-height: 290px !important;
  }
}
.destination-cta {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.destination-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.destination-cta-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.destination-cta-copy p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px 0;
  max-width: 600px;
}
.destination-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.destination-cta__decor-icon-floating {
  display: none;
}
@media (min-width: 769px) {
  .destination-cta__decor-icon-floating {
    display: block;
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .destination-cta__decor-icon-floating svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .destination-cta__decor-icon-floating--concha {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) rotate(-25deg);
  }
  .destination-cta__decor-icon-floating--star {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 0%;
    transform: translateY(-50%) rotate(15deg);
  }
}
.home-explore-wrapper {
  width: 100%;
  padding: 110px 0;
  background-color: #f0faf7;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(66, 194, 187, 0.04);
  border-bottom: 1px solid rgba(66, 194, 187, 0.04);
}
.home-explore-decor {
  position: absolute;
  color: rgba(217, 186, 150, 0.35);
  width: 220px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.home-explore-decor--left {
  left: 3%;
  bottom: 5%;
  transform: rotate(15deg);
}
.home-explore-decor--right {
  right: 3%;
  top: 5%;
  transform: rotate(-15deg);
}
.home-explore-decor svg {
  width: 100%;
  height: auto;
  display: block;
}
.home-explore-container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.home-explore-card {
  background: #ffffff;
  border-radius: 0;
  padding: 54px 44px;
  box-shadow: 0 24px 60px rgba(18, 38, 56, 0.06);
  border: 1px solid rgba(66, 194, 187, 0.08);
}
.home-explore-card__subtitle {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 8px 0;
}
.home-explore-card__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 36px 0;
  color: var(--ink);
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  letter-spacing: -0.02em;
}
.home-explore-form {
  display: grid;
  gap: 22px;
}
.home-explore-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-explore-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-explore-field select {
  height: 48px;
  padding: 0 32px 0 14px;
  border-radius: 0;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 0.98rem;
  color: #7e7e7e;
  transition: all 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.home-explore-field select:focus {
  border-color: rgba(31, 181, 174, 0.85);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 181, 174, 0.12);
}
.home-explore-field .booking-calendar {
  bottom: auto;
  top: calc(100% + 6px);
}
.home-explore-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.home-explore-submit-btn {
  background: #42c2bb;
  color: #ffffff;
  padding: 17px 24px;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(66, 194, 187, 0.15);
}
.home-explore-submit-btn:hover {
  background: #34aba4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 194, 187, 0.28);
}
.home-explore-content {
  text-align: left;
}
.home-explore-content__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px 0;
}
.home-explore-content__title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  font-family:
    "Playfair Display",
    Georgia,
    serif;
}
.home-explore-content__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 36px 0;
}
.home-explore-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-bottom: 40px;
}
.home-explore-card-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.home-explore-card-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(66, 194, 187, 0.08);
  transition: all 0.3s ease;
}
.home-explore-card-item__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(48%) sepia(85%) saturate(373%) hue-rotate(128deg) brightness(91%) contrast(93%);
  transition: all 0.3s ease;
}
.home-explore-card-item:hover .home-explore-card-item__icon {
  background: var(--teal);
  transform: scale(1.08);
}
.home-explore-card-item:hover .home-explore-card-item__icon img {
  filter: brightness(0) invert(1);
}
.home-explore-card-item__info h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
  font-family: "Source Sans 3", sans-serif;
}
.home-explore-card-item__info p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.home-explore-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #42c2bb;
  color: #ffffff;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(66, 194, 187, 0.15);
}
.home-explore-more-btn:hover {
  background: #34aba4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 194, 187, 0.28);
}
@media (max-width: 991px) {
  .home-explore-wrapper {
    padding: 78px 0;
  }
  .home-explore-decor {
    display: none;
  }
  .home-explore-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-explore-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-explore-wrapper {
    padding: 60px 0;
  }
  .home-explore-card {
    padding: 38px 26px;
  }
  .home-explore-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.villa-accommodation-promo {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}
.villa-accommodation-promo__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.villa-accommodation-promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.villa-accommodation-promo__copy h2 {
  margin-bottom: 24px;
}
.villa-accommodation-promo__copy .accent-teal {
  color: var(--teal-dark);
}
.villa-accommodation-promo__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 480px;
}
.villa-accommodation-promo__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(66, 194, 187, 0.15);
}
.villa-accommodation-promo__btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 194, 187, 0.28);
}
.villa-accommodation-promo__media-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.villa-accommodation-promo__main-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(18, 38, 56, 0.08);
  transition: all 0.3s ease;
}
.villa-accommodation-promo__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.villa-accommodation-promo__thumbnail {
  background: none;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.35;
  display: block;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.villa-accommodation-promo__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.25s ease;
}
.villa-accommodation-promo__thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.villa-accommodation-promo__thumbnail--active {
  border-color: var(--teal);
  box-shadow: 0 6px 15px rgba(66, 194, 187, 0.2);
  transform: translateY(-2px);
}
.villa-accommodation-promo__thumbnail--active img {
  opacity: 0.9;
}
.villa-accommodation-promo__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 0 0 40px;
  width: 100%;
}
.villa-accommodation-promo__amenity {
  display: flex;
  align-items: center;
  gap: 20px;
}
.villa-accommodation-promo__amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(66, 194, 187, 0.08);
  color: var(--teal-dark);
  flex-shrink: 0;
}
.villa-accommodation-promo__amenity-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.villa-accommodation-promo__amenity-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 980px) {
  .villa-accommodation-promo__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .villa-accommodation-promo__copy {
    align-items: center;
    text-align: center;
  }
  .villa-accommodation-promo__text {
    max-width: 100%;
  }
  .villa-accommodation-promo__amenities {
    justify-content: center;
    max-width: 420px;
    margin: 0 auto 32px;
  }
}
@media (max-width: 560px) {
  .villa-accommodation-promo__thumbnails {
    gap: 8px;
  }
  .villa-accommodation-promo__thumbnail {
    border-radius: 6px;
  }
}
.villa-final-cta {
  width: 100%;
  background-color: #fcfaf6;
}
.villa-final-cta__banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background-color: var(--teal-dark);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: 440px;
}
.villa-final-cta__left {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.villa-final-cta__copy {
  max-width: 480px;
  margin-left: auto;
  margin-right: 120px;
}
.villa-final-cta__decor-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.4);
}
.villa-final-cta__decor-icon-floating {
  display: none;
}
@media (min-width: 769px) {
  .villa-final-cta__decor-icon-floating {
    display: block;
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .villa-final-cta__decor-icon-floating svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .villa-final-cta__decor-icon-floating--concha {
    width: 120px;
    height: 120px;
    top: 12%;
    left: 26%;
    transform: rotate(-25deg);
  }
  .villa-final-cta__decor-icon-floating--star {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 4%;
    transform: rotate(15deg);
  }
}
.villa-final-cta__decor-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.villa-final-cta__copy h2 {
  font-family: "Literata", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}
.villa-final-cta__cursive {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-style: italic;
  font-weight: 400;
}
.villa-final-cta__subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.villa-final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: #f7f4ee;
  color: var(--teal-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  align-self: flex-start;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.villa-final-cta__btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}
.villa-final-cta__right {
  position: relative;
  overflow: hidden;
  height: 100%;
  clip-path: ellipse(100% 120% at 100% 50%);
}
.villa-final-cta__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.villa-final-cta__info-bar {
  background-color: #fcfaf6;
  padding: 50px 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.villa-final-cta__info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.villa-final-cta__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.villa-final-cta__info-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.villa-final-cta__info-icon svg {
  width: 100%;
  height: 100%;
}
.villa-final-cta__info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.villa-final-cta__info-text p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.4;
  margin: 0;
}
.villa-final-cta__info-text a {
  color: inherit;
  font-weight: 600;
  transition: color 0.2s;
}
.villa-final-cta__info-text a:hover {
  color: var(--teal-dark);
}
.villa-final-cta__info-text .sub-label {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .villa-final-cta__banner {
    grid-template-columns: 1.1fr 1fr;
  }
  .villa-final-cta__left {
    padding: 60px 40px;
  }
  .villa-final-cta__copy {
    margin: 0;
    max-width: 100%;
  }
  .villa-final-cta__info-bar {
    padding: 40px;
  }
  .villa-final-cta__info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .villa-final-cta__banner {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }
  .villa-final-cta__right {
    clip-path: none;
    min-height: 350px;
    height: 350px;
  }
  .villa-final-cta__copy h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .villa-final-cta__left {
    padding: 40px 24px;
  }
  .villa-final-cta__info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.villa-section-wrapper--breakfast {
  background-color: #f0faf7 !important;
  padding: 100px 0;
  width: 100%;
}
.villa-breakfast {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.villa-breakfast .section-title-serif {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}
.villa-breakfast__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.villa-breakfast__copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.section-title-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 28px;
  color: var(--teal-dark);
}
.section-title-divider__line {
  height: 1px;
  width: 60px;
  background-color: var(--teal);
  opacity: 0.4;
}
.section-title-divider__icon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.section-title-divider__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.villa-breakfast__text {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 20px;
}
.villa-breakfast__text:last-of-type {
  margin-bottom: 0;
}
.villa-breakfast__collage {
  position: relative;
  width: 100%;
  height: 440px;
}
.villa-breakfast__image-main {
  width: 80%;
  height: 85%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.villa-breakfast__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.villa-breakfast__image-secondary {
  width: 50%;
  height: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.villa-breakfast__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .villa-section-wrapper--breakfast {
    padding: 70px 0;
  }
  .villa-breakfast__grid {
    gap: 40px;
  }
  .villa-breakfast__collage {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .villa-breakfast__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .villa-breakfast__copy {
    text-align: center;
    align-items: center;
  }
  .section-title-divider {
    justify-content: center;
  }
  .villa-breakfast__collage {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .villa-breakfast__collage {
    height: 300px;
  }
}
.villa-section-wrapper--info-cards {
  background-color: #fcfdfc;
  padding: 60px 0 !important;
  border-bottom: 1px solid rgba(66, 194, 187, 0.04);
}
.destination-info-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.destination-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.destination-info-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 10px 0 10px 30px;
  border-left: 1px solid rgba(22, 62, 59, 0.12);
}
.destination-info-card__icon-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.destination-info-icon {
  width: 32px;
  height: 32px;
  display: block;
}
.destination-info-card__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.destination-info-card__content-col h3 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #163e3b;
  margin: 0 0 8px 0;
}
.destination-info-card__content-col p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 14px 0;
}
.destination-info-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.destination-info-card__link:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
@media (max-width: 768px) {
  .destination-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .destination-info-card {
    padding: 5px 0 5px 24px;
  }
}
.destination-hero-booking-form {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  z-index: 10;
}
.vertical-booking-form-glass {
  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);
  padding: 10px;
  border-radius: 0;
}
.vertical-booking-form {
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  padding: 20px 16px;
  border-radius: 0;
  color: var(--ink);
}
.vertical-booking-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  text-align: center;
  color: #163e3b;
}
.vertical-booking-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.vertical-booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vertical-booking-form__field > label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.vertical-booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vertical-booking-form__field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.vertical-booking-form__field select:hover,
.vertical-booking-form__field select:focus {
  border-color: rgba(31, 181, 174, 0.85);
  box-shadow: 0 0 0 3px rgba(31, 181, 174, 0.12);
}
.vertical-booking-form__field select option {
  background: #ffffff;
  color: #1c1c1c;
}
.vertical-booking-form__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background-color: var(--teal);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(66, 194, 187, 0.3);
  transition: all 0.25s ease;
  text-align: center;
}
.vertical-booking-form__button:hover {
  background-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(66, 194, 187, 0.45);
}
.vertical-booking-form .booking-bar__field-error {
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .destination-hero-booking-form {
    position: absolute;
    bottom: -180px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    margin: 0 auto;
    z-index: 10;
    transform: none;
  }
}
.gastronomy-intro-section {
  width: min(1140px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 96px;
}
.gastronomy-intro-media-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.gastronomy-intro-collage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
}
.gastronomy-intro-image-main {
  width: 80%;
  height: 85%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}
.gastronomy-intro-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gastronomy-intro-image-secondary {
  width: 52%;
  height: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: transform 0.6s ease;
}
.gastronomy-intro-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gastronomy-intro-image-main:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 3;
}
.gastronomy-intro-image-secondary:hover {
  transform: translateY(-4px) scale(1.04);
}
.gastronomy-intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gastronomy-intro-eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gastronomy-intro-title {
  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1a3c39;
  margin: 0;
  letter-spacing: -0.02em;
}
.gastronomy-intro-cursive {
  font-style: italic;
  color: #209b96;
}
.gastronomy-intro-divider {
  width: 60px;
  height: 2px;
  background-color: var(--teal-dark);
  margin: 8px 0;
}
.gastronomy-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}
.gastronomy-intro-text:last-of-type {
  margin-bottom: 0;
}
.gastronomy-intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.gastronomy-intro-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.gastronomy-intro-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.gastronomy-intro-feature-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.gastronomy-intro-feature-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a3c39;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.gastronomy-intro-feature-item p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 180px;
}
@media (max-width: 991px) {
  .gastronomy-intro-section {
    gap: 40px;
  }
  .gastronomy-intro-collage {
    height: 400px;
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .gastronomy-intro-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 30px;
    margin-bottom: 58px;
  }
  .gastronomy-intro-collage {
    height: 360px;
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .gastronomy-intro-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gastronomy-intro-feature-item p {
    max-width: 100%;
  }
}
.suite-custom-gallery-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.suite-custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: min(1140px, calc(100% - 48px));
  margin: 36px auto 0;
}
.suite-custom-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gastronomy-cta-section {
  position: relative;
  width: 100%;
  background-color: #0b5e56;
  padding: 90px 0;
  overflow: hidden;
}
.gastronomy-cta-decor {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.gastronomy-cta-decor svg {
  width: 100%;
  height: auto;
  display: block;
}
.gastronomy-cta-decor--left {
  left: -60px;
  bottom: -60px;
  transform: rotate(20deg);
}
.gastronomy-cta-decor--right {
  right: -80px;
  top: -60px;
  transform: rotate(-15deg) scaleX(-1);
}
.gastronomy-cta-container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.gastronomy-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gastronomy-cta-eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gastronomy-cta-title {
  color: #ffffff;
  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 32px;
}
.gastronomy-cta-title span.gastronomy-intro-cursive {
  font-style: italic;
  color: #ffffff;
}
.gastronomy-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #0b5e56 !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    background-color 0.2s ease;
}
.gastronomy-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background-color: #f7fbfb;
}
.gastronomy-cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.gastronomy-cta-button-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.gastronomy-cta-media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  background-color: #f5efe9;
}
.gastronomy-cta-media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .gastronomy-cta-container {
    gap: 48px;
    grid-template-columns: 1fr 1fr;
  }
  .gastronomy-cta-title {
    font-size: 2.1rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .gastronomy-cta-section {
    padding: 70px 0;
  }
  .gastronomy-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .gastronomy-cta-copy {
    align-items: center;
  }
  .gastronomy-cta-decor {
    width: 200px;
  }
  .gastronomy-cta-decor--left {
    left: -40px;
    bottom: -40px;
  }
  .gastronomy-cta-decor--right {
    right: -40px;
    top: -40px;
  }
}
.suite-custom-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: #fcfcfc;
  width: 100%;
}
.suite-custom-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.suite-custom-gallery-item:hover img {
  transform: scale(1.05);
}
.suite-custom-gallery-item--vertical {
  height: 376px;
}
.suite-custom-gallery-item--horizontal {
  height: 180px;
}
@media (max-width: 991px) {
  .suite-custom-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .suite-custom-gallery-col {
    gap: 14px;
  }
  .suite-custom-gallery-item--vertical {
    height: 314px;
  }
  .suite-custom-gallery-item--horizontal {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .suite-custom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .suite-custom-gallery-col {
    gap: 12px;
  }
  .suite-custom-gallery-item--vertical {
    height: 252px;
  }
  .suite-custom-gallery-item--horizontal {
    height: 120px;
  }
}
@media (max-width: 480px) {
  .suite-custom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .suite-custom-gallery-col {
    gap: 8px;
  }
  .suite-custom-gallery-item--vertical {
    height: 210px;
  }
  .suite-custom-gallery-item--horizontal {
    height: 101px;
  }
}
.gastronomy-parallax-window {
  position: relative;
  width: 100%;
  height: 520px;
  background-image: url("https://firebasestorage.googleapis.com/v0/b/villacumuru-fc7fc.firebasestorage.app/o/FotosPousada%2F1%20(1).webp?alt=media&token=570d9ee1-4bbf-4248-8bfe-c5a26ca5dd3c");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 16px 32px rgba(0, 0, 0, 0.12), inset 0 -16px 32px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 90px;
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gastronomy-parallax-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 20, 24, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.gastronomy-parallax-content {
  max-width: 800px;
  width: 100%;
}
.gastronomy-parallax-eyebrow {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gastronomy-parallax-quote {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  font-style: normal;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .gastronomy-parallax-window {
    height: 350px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.custom-select-field {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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;
  text-align: left;
}
.custom-select-trigger--open,
.custom-select-trigger:hover {
  border-color: rgba(31, 181, 174, 0.85);
  box-shadow: 0 0 0 3px rgba(31, 181, 174, 0.12);
}
.custom-select-value {
  flex: 1 1 auto;
  color: #7e7e7e;
  font-size: 0.98rem;
}
.custom-select-trigger--open .custom-select-value,
.custom-select-trigger:focus .custom-select-value {
  color: #4d4d4d;
}
.custom-select-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.custom-select-trigger--open .custom-select-icon {
  transform: rotate(180deg);
}
.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 99;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border: 1px solid rgba(31, 181, 174, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.custom-select-option {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-select-option:hover {
  background: rgba(66, 194, 187, 0.08);
  color: var(--teal);
}
.custom-select-option--selected {
  background: rgba(66, 194, 187, 0.15);
  color: var(--teal);
  font-weight: 600;
}
.vertical-booking-form__field .custom-select-trigger {
  border-radius: 4px;
}
