@font-face {
  font-family: "AboretoLocal";
  src: url("assets/fonts/aboreto.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLightLocal";
  src: url("assets/fonts/poppins-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsSemiLocal";
  src: url("assets/fonts/poppins-semibold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --page: #f5f5f5;
  --ink: #1e1e1e;
  --green: #143c2c;
  --gold: #ddba74;
  --gold-text: #8f6610;
  --soft-gold: #eccdb2;
  --muted: #565656;
  --white: #fffffe;
  --header-h: 78px;
  --max: 960px;
  --mobile-inner: 320px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  font-family: PoppinsLightLocal, Poppins, Arial, sans-serif;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  margin: 0;
  background: var(--page);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-transitioning {
  cursor: progress;
}

main {
  view-transition-name: page;
}

::view-transition-group(page) {
  animation-duration: 420ms;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

::view-transition-old(page) {
  animation: pageOut 260ms cubic-bezier(.4, 0, 1, 1) both;
}

::view-transition-new(page) {
  animation: pageIn 420ms cubic-bezier(.22, 1, .36, 1) both;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 4px;
}

.button.dark:focus-visible,
.chat-float:focus-visible {
  outline-color: var(--gold);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 30;
  padding: 10px 18px;
  background: var(--green);
  color: var(--white);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 14px;
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  touch-action: manipulation;
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-h);
  background: var(--page);
}

.header-inner {
  width: min(100%, 430px);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 51px;
  height: 51px;
}

.brand-word {
  font-family: AboretoLocal, serif;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  color: var(--ink);
}

.desktop-nav,
.header-phone {
  display: none;
}

.menu-toggle {
  justify-self: end;
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 23px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  display: block;
  transition: transform 260ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -9px;
}

.menu-lines::after {
  top: 9px;
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  transform: translateY(9px) rotate(45deg);
}

.menu-open .menu-lines::after {
  transform: translateY(-9px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(245, 245, 245, 0.98);
  transform: translateY(-100%);
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
  padding-top: calc(var(--header-h) + 46px);
}

.drawer.is-open {
  transform: translateY(0);
}

/* With JS, keep the closed drawer out of the tab order and a11y tree.
   (Without JS the drawer can't be opened, so its links stay reachable as a fallback.) */
html.js .drawer {
  visibility: hidden;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 420ms;
}

html.js .drawer.is-open {
  visibility: visible;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.drawer nav {
  width: min(280px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.drawer a {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 20px;
}

.drawer a[aria-current="page"] {
  color: var(--gold-text);
}

.section {
  padding: 58px 0;
}

.site-header + .drawer + main > .section:first-child {
  padding-top: 20px;
  padding-bottom: 58px;
}

.section-tight {
  padding: 38px 0;
}

.inner {
  width: min(var(--mobile-inner), calc(100vw - 40px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.display {
  margin: 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: center;
}

.display.large {
  font-size: 28px;
}

.display.dark {
  color: var(--ink);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
}

.lead {
  margin: 14px auto 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.copy {
  margin: 20px auto 0;
  color: var(--ink);
  font-family: PoppinsLightLocal, Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.72;
}

.copy.center {
  text-align: center;
}

.hero {
  min-height: 371px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .31);
}

.hero-content {
  width: min(300px, calc(100vw - 44px));
  text-align: center;
  color: var(--white);
  animation: slideUp 720ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: AboretoLocal, serif;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-cta .button {
  margin-top: 0;
  flex: 1 1 132px;
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: .02em;
}

.button.ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .8);
}

.button.ghost:hover {
  background: var(--white);
  color: var(--green);
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 41px;
  min-width: 200px;
  padding: 0 28px;
  margin-top: 28px;
  background: var(--gold);
  color: var(--green);
  border: 0;
  border-radius: 0;
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 17.67px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.button.dark {
  background: var(--green);
  color: var(--white);
  min-width: 170px;
  min-height: 44px;
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.button.dark:hover {
  background: var(--gold);
  color: var(--green);
}

.split-image {
  width: 100%;
  min-height: 298px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 38px;
  margin-top: 34px;
}

.feature h3,
.service-block h2,
.villa-text h2 {
  margin: 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
}

.feature p,
.service-block p,
.service-block li {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: PoppinsLightLocal, Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.service-block li b {
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-weight: 400;
}

.ico {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon,
.package-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 60, 44, .07);
}

.feature-icon .ico,
.package-icon .ico {
  width: 26px;
  height: 26px;
}

.amenity-grid {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 22px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #555;
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.amenity-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.icon-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.icon-list li {
  display: flex;
  gap: 14px;
}

.icon-list li + li {
  margin-top: 16px;
}

.icon-list .ico {
  margin-top: 1px;
}

picture {
  display: contents;
}

.image-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  isolation: isolate;
}

.image-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .34);
}

.image-card span {
  font-family: AboretoLocal, serif;
  font-size: 27px;
  line-height: 1.4;
  text-align: center;
}

.card-stack {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.villas-heading {
  padding: 18px 0 0;
}

.site-header + .drawer + main > .villas-heading:first-child {
  padding: 18px 0 0;
}

.villas-intro {
  max-width: 560px;
  margin: 16px auto 0;
}

/* Rich villa listing — one card per villa, fed from each villa's own content. */
.villa-listing {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.villa-card {
  background: var(--white);
  overflow: hidden;
}

.villa-card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.villa-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-card-body {
  padding: 28px 24px 32px;
  text-align: center;
}

.villa-card-body h2 {
  margin: 0;
  font-family: AboretoLocal, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.villa-card-body h2 a {
  color: var(--green);
}

.villa-card-intro {
  max-width: 540px;
  margin: 14px auto 0;
  color: #5e5e5e;
  font-size: 15px;
  line-height: 1.7;
}

.villa-card .property-facts {
  max-width: 520px;
  margin-inline: auto;
}

.villa-card .property-facts span {
  padding: 11px 12px;
}

.villa-card-foot {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.villa-card-foot .property-status {
  margin-top: 0;
}

.text-link {
  color: var(--gold-text);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.reviews {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.review {
  text-align: center;
  padding: 30px 24px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.quote-mark {
  color: var(--gold-text);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: .8;
}

.review h3 {
  margin: 8px 0 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 19px;
}

.review strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 13px;
}

.review p {
  margin: 14px 0 0;
  font-family: PoppinsLightLocal, Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.service-photo-grid {
  display: grid;
  gap: 0;
  margin-top: 36px;
}

.service-photo-grid img {
  width: 100%;
  min-height: 213px;
  object-fit: cover;
}

.service-block {
  padding: 42px 0;
}

.service-block ol {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 24px;
}

.service-block b {
  color: var(--green);
}

.package-list {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.package h3 {
  margin: 0;
  color: var(--green);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 18px;
  text-align: center;
}

.package p {
  margin: 8px 0 0;
  text-align: center;
}

.slider {
  position: relative;
  overflow: hidden;
  background: #ddd;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.slides {
  display: flex;
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  -webkit-user-drag: none;
}

.slider-controls {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.slider button {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 245, .86);
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(245, 245, 245, .6);
}

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

.villa-text {
  padding: 40px 0 0;
}

.villa-text h1 {
  margin: 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 30px;
  line-height: 1.35;
  text-align: center;
}

.villa-text .status {
  display: block;
  margin: 26px auto 0;
  color: var(--gold-text);
  font-family: AboretoLocal, serif;
  font-size: 28px;
  text-align: center;
}

.villa-text ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.villa-text li {
  text-align: center;
}

.property-page {
  background: #eee;
  padding-bottom: 66px;
}

html.js .property-page [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.property-hero {
  background: #ddd;
}

.property-page .property-hero .slide img {
  height: min(38vh, 420px);
  min-height: 290px;
  object-fit: cover;
}

.property-page .slider-controls {
  inset: 0 18px;
  align-items: center;
  z-index: 4;
}

.property-page .slider button {
  width: 44px;
  height: 44px;
  background: rgba(245, 245, 245, .88);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
  color: var(--green);
}

.property-page .slider-dots {
  display: none;
}

.property-intro {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 40px 24px 36px;
  background: var(--white);
  text-align: center;
}

.property-kicker {
  margin: 0 0 10px;
  color: var(--gold-text);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.property-intro h1,
.property-cta h2 {
  margin: 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.property-intro > p:not(.property-kicker),
.property-cta > p:not(.property-kicker) {
  max-width: 640px;
  margin: 18px auto 0;
  color: #5e5e5e;
  font-size: 15px;
  line-height: 1.7;
}

.property-facts {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.property-facts span {
  min-height: 44px;
  padding: 10px 8px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d8d8;
  color: var(--ink);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 12px;
  line-height: 1.25;
}

.property-status {
  display: inline-grid;
  place-items: center;
  min-width: 132px;
  min-height: 38px;
  margin-top: 28px;
  padding: 0 20px;
  background: var(--green);
  color: var(--white);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.property-status.reserved {
  background: var(--gold);
  color: var(--green);
}

.property-availability {
  margin-top: 28px;
  padding: 34px 24px 30px;
  background: var(--white);
}

.availability-head {
  text-align: center;
}

.availability-head h2 {
  margin: 0;
  color: var(--green);
  font-family: AboretoLocal, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.availability-status {
  max-width: 680px;
  margin: 18px auto 0;
  color: #5e5e5e;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.availability-status.is-error,
.availability-status.is-stale {
  color: #815d13;
}

.availability-calendars {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.availability-month {
  padding: 16px;
  border: 1px solid #dedede;
  background: #fafafa;
}

.availability-month h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

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

.availability-weekday,
.availability-day,
.availability-blank {
  min-height: 32px;
}

.availability-weekday {
  display: grid;
  place-items: center;
  color: #777;
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.availability-day {
  display: grid;
  place-items: center;
  border: 1px solid #cfe0d7;
  background: #f2f8f5;
  color: var(--green);
  font-size: 12px;
  line-height: 1;
}

.availability-day.is-unavailable {
  border-color: var(--gold);
  background: #f4dfb5;
  color: var(--green);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
}

.availability-day.is-past {
  border-color: #e4e4e4;
  background: #f7f7f7;
  color: #9a9a9a;
}

.availability-day.is-past.is-unavailable {
  border-color: #e4e4e4;
  background: #f7f7f7;
  color: #9a9a9a;
  font-family: PoppinsLightLocal, Poppins, Arial, sans-serif;
}

.availability-day.is-today {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.availability-legend {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: #555;
  font-size: 12px;
  line-height: 1.2;
}

.availability-legend[hidden] {
  display: none;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 1px solid #cfe0d7;
  background: #f2f8f5;
}

.legend-dot.unavailable {
  border-color: var(--gold);
  background: #f4dfb5;
}

.property-details {
  padding-top: 54px;
  display: grid;
  gap: 22px;
}

.property-section {
  padding: 32px 24px;
  background: var(--white);
}

.property-section h2 {
  margin: 0;
  color: var(--gold-text);
  font-family: AboretoLocal, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.property-section ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.property-section li + li {
  margin-top: 10px;
}

.property-section b {
  color: #3e3e3e;
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
}

.property-cta {
  margin-top: 54px;
  padding: 42px 24px;
  background: var(--white);
}

.property-cta .button {
  margin-top: 28px;
}

.contact-block {
  padding-top: 23px;
  text-align: center;
}

.contact-block h1 {
  width: 240px;
  margin: 0 auto;
  color: var(--ink);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.43;
}

.contact-lines {
  margin-top: 54px;
  display: grid;
  gap: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.contact-lines b {
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
}

.contact-form {
  margin-top: 111px;
  display: grid;
  gap: 26px;
  text-align: left;
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  outline: 0;
}

.field input:focus-visible,
.field textarea:focus-visible {
  border-bottom-color: var(--gold);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(20, 60, 44, .08);
  color: var(--green);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.form-status[hidden] {
  display: none;
}

.dark-cta {
  width: 100%;
  margin-top: 0;
  padding: 70px 20px 58px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.dark-cta .copy {
  max-width: 230px;
  margin: 0 auto;
  color: var(--white);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 22px;
  line-height: 1.45;
}

.dark-cta .button {
  margin-top: 36px;
  min-width: 200px;
  min-height: 40px;
  background: var(--page);
  color: var(--ink);
  font-family: PoppinsLightLocal, Poppins, sans-serif;
  font-size: 15px;
  text-transform: none;
}

.site-footer {
  padding: 26px 0 72px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green);
  transition: color 180ms ease;
}

.socials a:hover {
  color: var(--gold-text);
}

.social-ico {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 18px;
  font-size: 13px;
}

.footer-links a {
  padding: 6px 2px;
  color: var(--muted);
  transition: color 180ms ease;
}

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

.copyright {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.chat-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 12;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  display: grid;
  place-items: center;
}

.chat-icon {
  width: 28px;
  height: 21px;
  border-radius: 5px;
  background: var(--white);
  position: relative;
}

.chat-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: -6px;
  border-top: 7px solid var(--white);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.chat-icon span,
.chat-icon span::before,
.chat-icon span::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  top: 9px;
}

.chat-icon span {
  left: 12px;
}

.chat-icon span::before,
.chat-icon span::after {
  content: "";
  top: 0;
}

.chat-icon span::before {
  left: -9px;
}

.chat-icon span::after {
  left: 9px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageOut {
  to {
    opacity: 0;
    transform: translateY(-10px) scale(.992);
    filter: blur(2px);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.996);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(page),
  ::view-transition-new(page) {
    animation-duration: 1ms;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content,
  body.is-transitioning main {
    animation: none;
  }

  .button:hover,
  .button.dark:hover {
    transform: none;
  }
}

@media (min-width: 760px) {
  :root {
    --header-h: 106px;
    --mobile-inner: 700px;
  }

  .header-inner {
    width: min(700px, calc(100vw - 40px));
    grid-template-columns: 80px 1fr 52px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .brand-word {
    font-size: 42px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(620px, calc(100vw - 64px));
  }

  .hero h1 {
    font-size: 62px;
    line-height: 1.35;
  }

  .button {
    min-width: 280px;
  }

  .display {
    font-size: 50px;
  }

  .display.large {
    font-size: 64px;
  }

  .lead {
    font-size: 30px;
  }

  .feature-list,
  .reviews,
  .package-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-stack,
  .service-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .split .inner {
    width: auto;
    max-width: 420px;
    padding: 0 40px;
    align-self: center;
  }

  .slide img {
    height: 560px;
  }

  .property-page .property-hero .slide img {
    height: min(50vh, 560px);
    min-height: 360px;
  }

  .property-intro {
    margin-top: -58px;
    padding: 50px 48px 46px;
  }

  .property-intro h1,
  .property-cta h2 {
    font-size: 42px;
  }

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

  .villa-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .villa-card-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 360px;
  }

  /* Alternate the image side down the list for editorial rhythm. In RTL the
     whole grid mirrors, so this still reads as a clean A/B cadence. */
  .villa-card:nth-child(even) .villa-card-media {
    order: 2;
  }

  .villa-card-body {
    padding: 40px 44px;
    align-self: center;
    text-align: start;
  }

  .villa-card-body h2 {
    font-size: 32px;
  }

  .villa-card-intro,
  .villa-card .property-facts {
    margin-inline: 0;
  }

  /* Two-up facts read better inside the narrower half-width card. */
  .villa-card .property-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-card-foot {
    flex-direction: row;
    justify-content: space-between;
  }

  .property-availability {
    padding: 42px 44px 38px;
  }

  .availability-head h2 {
    font-size: 34px;
  }

  .availability-calendars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .property-section {
    padding: 40px 38px;
  }

  .property-section h2 {
    font-size: 30px;
  }

  .property-cta {
    padding: 52px 48px;
  }

}

@media (min-width: 980px) {
  .header-inner {
    width: min(980px, calc(100vw - 40px));
    grid-template-columns: 80px max-content 1fr max-content;
    gap: 24px;
  }

  .brand-word {
    justify-self: start;
    color: var(--gold-text);
    font-size: 28px;
  }

  .desktop-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #6e6e6e;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .desktop-nav a {
    transition: color 180ms ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--gold-text);
  }

  .header-phone {
    display: block;
    color: var(--gold-text);
    font-family: PoppinsSemiLocal, Poppins, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .property-page .inner {
    width: min(1020px, calc(100vw - 80px));
  }

  .property-details {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .property-section-wide {
    grid-column: 1 / -1;
  }
}

/* =====================================================================
   i18n: language switcher
   Desktop dropdown lives inside .desktop-nav (hidden < 980px); the drawer
   gets a flat language list for mobile. No layout impact on the header grid.
   ===================================================================== */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #6e6e6e;
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 180ms ease;
}

.lang-toggle:hover,
.lang-switcher.is-open .lang-toggle {
  color: var(--gold-text);
}

.lang-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 180ms ease;
}

.lang-switcher.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--soft-gold);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 25;
}

.lang-switcher.is-open .lang-menu {
  display: flex;
}

.lang-menu a {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
}

.lang-menu a:hover {
  background: var(--page);
}

.lang-menu a[aria-current="true"] {
  color: var(--gold-text);
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
}

.drawer-langs {
  width: min(280px, calc(100vw - 56px));
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--soft-gold);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
}

.drawer-langs a {
  font-family: PoppinsSemiLocal, Poppins, sans-serif;
  font-size: 14px;
  color: var(--green);
  padding: 6px 8px;
}

.drawer-langs a[aria-current="true"] {
  color: var(--gold-text);
}

/* =====================================================================
   i18n: right-to-left support (Arabic, Hebrew)
   Layout is mostly grid/flow which mirrors automatically under dir="rtl";
   only the explicitly side-anchored pieces need flipping.
   ===================================================================== */
[dir="rtl"] .skip-link {
  left: auto;
  right: 8px;
}

[dir="rtl"] .chat-float {
  right: auto;
  left: 16px;
}

[dir="rtl"] .header-phone {
  text-align: left;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .amenity,
[dir="rtl"] .contact-form {
  text-align: right;
}

/* =====================================================================
   i18n: non-Latin font fallbacks
   The brand fonts (Aboreto, Poppins) are Latin-only and would render as
   tofu for Thai/Arabic/Hebrew/Cyrillic. We force script-appropriate system
   font stacks (no extra downloads, so no perf cost on poor networks). These
   stacks also cover Latin, so brand/villa names still render cleanly.
   Self-hosted, subsetted Noto webfonts can replace these later if desired.
   ===================================================================== */
html[lang="th"] {
  --i18n-font: "Noto Sans Thai", "Leelawadee UI", "Sukhumvit Set", system-ui, sans-serif;
}

html[lang="ar"] {
  --i18n-font: "Noto Sans Arabic", "Geeza Pro", Tahoma, system-ui, sans-serif;
}

html[lang="he"] {
  --i18n-font: "Noto Sans Hebrew", "Arial Hebrew", Tahoma, system-ui, sans-serif;
}

html[lang="ru"] {
  --i18n-font: "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
}

html[lang="th"] *,
html[lang="ar"] *,
html[lang="he"] *,
html[lang="ru"] * {
  font-family: var(--i18n-font) !important;
}
