
:root {
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --surface-2: #efe7dc;
  --text: #26231f;
  --muted: #6f675e;
  --accent: #8a725a;
  --accent-dark: #5f4d3c;
  --line: #ded4c8;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(46, 38, 30, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  font-weight: 500;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.1rem);
  max-width: 850px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.btn-primary {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(95, 77, 60, 0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.76);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(138, 114, 90, 0.15);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  cursor: pointer;
}

.hero {
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  background: #4f453c;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.booking-bar {
  position: relative;
  z-index: 3;
  margin-top: 48px;
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr auto;
  gap: 12px;
}

.booking-field {
  padding: 7px 14px;
  border-right: 1px solid var(--line);
}

.booking-field:last-of-type {
  border-right: 0;
}

.booking-field label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.trust-item:last-child {
  border-right: 0;
}

section {
  padding: 100px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 38, 30, 0.07);
  border: 1px solid rgba(138,114,90,0.12);
}

.room-image {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(95,77,60,0.18), rgba(255,255,255,0.2)),
    var(--surface-2);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.room-body {
  padding: 26px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 0.84rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.visual-placeholder {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(95,77,60,0.1), rgba(255,255,255,0.15)),
    var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  font-weight: 800;
}

.info-band {
  background: var(--accent-dark);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
}

.location-card {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(95,77,60,0.1), rgba(255,255,255,0.15)),
    var(--surface-2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 780;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta {
  padding-top: 0;
}

.cta-box {
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: clamp(34px, 7vw, 76px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

footer {
  padding: 58px 0 90px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-book {
  display: none;
  position: fixed;
  z-index: 60;
  left: 14px;
  right: 14px;
  bottom: 14px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow);
    color: var(--text);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

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

  .booking-bar .btn {
    grid-column: 1 / -1;
  }

  .booking-field:nth-child(2) {
    border-right: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .room-grid,
  .split,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 34px;
  }

  .visual-placeholder {
    min-height: 360px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-book {
    display: block;
  }

  footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
    padding-top: 120px;
  }

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

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-field:last-of-type {
    border-bottom: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .room-grid {
    gap: 16px;
  }

  section {
    padding: 76px 0;
  }
}


/* V2, photographs and contact */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 20, 16, 0.76) 0%, rgba(24, 20, 16, 0.46) 48%, rgba(24, 20, 16, 0.16) 100%),
    linear-gradient(180deg, rgba(24, 20, 16, 0.12), rgba(24, 20, 16, 0.42));
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 62px;
  padding: 4px 10px;
  border-radius: 15px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 30px rgba(34, 27, 22, 0.12);
  backdrop-filter: blur(12px);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header:not(.scrolled) .nav-links {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.28);
}

.site-header:not(.scrolled) .language {
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
  background: rgba(30,24,20,0.24);
  backdrop-filter: blur(10px);
}

.site-header:not(.scrolled) .menu-toggle {
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
  background: rgba(30,24,20,0.24);
}

.room-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}

.room-image img,
.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.025);
}

.experience-photo {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-2);
}

.location-contact {
  min-height: 430px;
  align-content: center;
  justify-items: start;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.34), transparent 36%),
    var(--surface-2);
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
}

.location-contact h3 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 6px;
}

.location-pin {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--white);
  font-size: 1.45rem;
}

.location-address {
  max-width: 340px;
  margin: 18px 0 24px;
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.text-link {
  font-weight: 750;
  color: var(--accent-dark);
}

.footer-logo {
  width: min(270px, 100%);
  height: auto;
}

.footer-links a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .site-header:not(.scrolled) .nav-links.open {
    color: var(--text);
    text-shadow: none;
  }

  .experience-photo {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand-logo-wrap {
    width: 124px;
    height: 52px;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(24,20,16,0.30) 0%, rgba(24,20,16,0.62) 62%, rgba(24,20,16,0.76) 100%);
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
  }
}


/* V3 adjustments */
.room-grid {
  grid-template-columns: repeat(3, 1fr);
}

.experience-photo {
  min-height: 0;
  aspect-ratio: 4 / 5;
  align-items: stretch;
  display: block;
  overflow: hidden;
}

.experience-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-contact {
  min-height: 0;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .experience-photo {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .room-grid {
    grid-template-columns: 1fr;
  }
}


/* V4, destination gallery and Cloudbeds */
.destination-section {
  background: var(--surface);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  overflow: hidden;
  border: 1px solid rgba(138, 114, 90, 0.14);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 10px 30px rgba(46, 38, 30, 0.06);
}

.destination-card-wide {
  grid-column: span 2;
}

.destination-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.destination-card-wide .destination-media {
  aspect-ratio: 2 / 1;
}

.destination-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.destination-card:hover .destination-media img {
  transform: scale(1.025);
}

.destination-body {
  padding: 22px 24px 24px;
}

.destination-body h3 {
  margin-bottom: 8px;
}

.destination-body p {
  margin-bottom: 0;
}

/* Ensure the pool image always fills its frame without blank bands */
.experience-photo {
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  line-height: 0;
}

.experience-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Cloudbeds booking page */
.booking-page {
  min-height: 100vh;
  padding: 122px 0 70px;
  background: var(--bg);
}

.booking-shell {
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
}

.booking-page-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.booking-engine-wrap {
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

cb-immersive-experience {
  display: block;
  min-height: 720px;
}

.booking-fallback {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-fallback a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dev-booking-note {
  display: none;
  margin-bottom: 18px;
  padding: 15px 18px;
  border: 1px solid #d9c79e;
  border-radius: var(--radius-sm);
  background: #fff8e5;
  color: #5f4d3c;
}

body.is-local-preview .dev-booking-note {
  display: block;
}

.booking-header {
  background: rgba(247, 243, 237, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.booking-header .nav-links {
  display: none;
}

.booking-header .brand-logo-wrap {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 920px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card-wide {
    grid-column: span 2;
  }

  .booking-engine-wrap,
  cb-immersive-experience {
    min-height: 660px;
  }
}

@media (max-width: 620px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card-wide {
    grid-column: auto;
  }

  .destination-card-wide .destination-media,
  .destination-media {
    aspect-ratio: 4 / 3;
  }

  .booking-page {
    padding-top: 100px;
  }

  .booking-shell {
    width: min(calc(100% - 18px), 1320px);
  }

  .booking-engine-wrap {
    border-radius: 18px;
  }
}


/* V5 interaction and accessibility refinements */
.booking-field-date {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.18s ease;
}

.booking-field-date:hover {
  background: rgba(138, 114, 90, 0.07);
}

.booking-field-date:focus-within {
  background: rgba(138, 114, 90, 0.09);
  outline: 2px solid rgba(95, 77, 60, 0.32);
  outline-offset: 2px;
}

.booking-field-date label,
.booking-field-date input[type="date"] {
  cursor: pointer;
}

.booking-field input[type="date"] {
  min-height: 34px;
  color-scheme: light;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 8px;
  margin-right: -6px;
}

.menu-toggle:focus-visible,
.btn:focus-visible,
.language:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(95, 77, 60, 0.45);
  outline-offset: 3px;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 620px) {
  .booking-field-date {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .booking-field input[type="date"] {
    min-height: 42px;
    font-size: 1rem;
  }
}
