/* ============================================================
   LUXURI — Main Stylesheet
   ============================================================ */

:root {
  --black: #000000;
  --dark: #000000;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --muted: #f7f8f8;
  /* --muted: rgba(255, 255, 255, 0.48); */
  --muted2: rgba(255, 255, 255, 0.28);
  --font: 'Mulish', ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
}

.lx-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 -54px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 32%) 52%, rgba(0, 0, 0, 0) 100%);
}

.lx-brand {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 6px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}

.lx-brand img{
  width: 140px;
  filter: invert(1);
}

.lx-nav-right {
  display: flex;
  align-items: center;
  gap: 44px;
}

.lx-nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  margin-bottom: 0px;
}

.foot-brand img{
  width: 270px;
  filter: invert(1);
}

.lx-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: opacity .2s;
}

.lx-nav-links a:hover {
  /* opacity: .6; */
  color: #e9d9c3;
}

.lx-burger {
  position: relative;
  display: block;
  width: 34px;
  height: 28px;
}

.lx-burger-bar {
  position: absolute;
  left: 0;
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.lx-burger-top { top: 6px; }
.lx-burger-mid { top: 13px; }
.lx-burger-bot { top: 20px; }

.lx-hamburger {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .lx-nav {
    padding: 18px 20px;
  }

  .lx-nav-links {
    display: none;
  }

  .lx-nav-right {
    gap: 0;
  }
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: #111;
  z-index: 1000;
  transform: translateX(100%);
  /* Decelerating ease so the panel settles instead of stopping dead. */
  transition: transform .52s cubic-bezier(.16, 1, .3, 1),
              box-shadow .52s ease;
  will-change: transform;
  padding: 28px 36px 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, .06);
  box-shadow: none;
}

.drawer.open {
  transform: translateX(0);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .45);
}

/* ── DRAWER CONTENT STAGGER ──
   Header first, then each link, so the contents arrive one by one behind the
   sliding panel. Closing drops every delay so it all leaves together. */
.drawer-header,
.drawer-links li {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .34s ease, transform .44s cubic-bezier(.16, 1, .3, 1);
}

.drawer.open .drawer-header,
.drawer.open .drawer-links li {
  opacity: 1;
  transform: translateX(0);
}

.drawer.open .drawer-header            { transition-delay: .14s; }
.drawer.open .drawer-links li:nth-child(1) { transition-delay: .22s; }
.drawer.open .drawer-links li:nth-child(2) { transition-delay: .29s; }
.drawer.open .drawer-links li:nth-child(3) { transition-delay: .36s; }
.drawer.open .drawer-links li:nth-child(4) { transition-delay: .43s; }
.drawer.open .drawer-links li:nth-child(5) { transition-delay: .50s; }
.drawer.open .drawer-links li:nth-child(6) { transition-delay: .57s; }

@media (prefers-reduced-motion: reduce) {
  .drawer,
  .drawer-overlay,
  .drawer-header,
  .drawer-links li {
    transition-duration: .01ms;
    transition-delay: 0s;
  }
  .drawer-header,
  .drawer-links li { transform: none; }
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.drawer-brand {
  /* live marks this wordmark `sm:hidden` — it exists only on small screens,
     where it lands exactly on the fixed nav logo so the panel appears to
     merge around it. On desktop the panel has no logo. */
  display: none;
  line-height: 0;
}

@media (max-width: 639px) {
  .drawer-brand { display: block; }
}

.drawer-brand img {
  display: block;
  width: 135px;
  height: auto;
  filter: invert(1);
  margin: -23px 0 -20px;
}

.drawer-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.drawer-eyebrow {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.drawer-controls {
  display: grid;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  padding-top: 1px;
}

.drawer-dash {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: rgba(255, 255, 255, .5);
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  transition: color .2s, transform .2s;
}

.drawer-dash-icons {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.drawer-icon {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
}

.drawer-icon-plus { opacity: 0; }

.drawer.collapsed .drawer-icon-minus { opacity: 0; }
.drawer.collapsed .drawer-icon-plus { opacity: 1; }

.drawer-x {
  margin-left: auto;   /* stays right when the brand is hidden */
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: .85;
}

.drawer.collapsed .drawer-dash {
  color: #fff;
}

.drawer-x:hover {
  opacity: 1;
}

.drawer-links {
  list-style: none;
  padding-left: 0px;
  max-height: 420px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .28s ease, opacity .2s ease, margin .28s ease;
}

.drawer.collapsed .drawer-links {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

/* Reset the links while collapsed so expanding replays the same stagger. */
.drawer.collapsed .drawer-links li {
  opacity: 0;
  transform: translateX(26px);
  transition-delay: 0s;
}

.drawer-links li a {
  display: block;
  font-size: 17px;
  font-weight: 300;
  color: #aba9a5;
  text-decoration: none;
  padding: 10px 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, .1); */
  transition: color .2s;
}

.drawer-links li:first-child a {
  /* border-top: 1px solid rgba(255, 255, 255, .1); */
}

/* Same gold the top navbar uses on hover, so both menus behave alike.
   (Live fades the drawer link instead; the gold is a deliberate change.) */
.drawer-links li a:hover {
  color: var(--lx-gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 72vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  /* allow dropdowns to escape hero bounds */
}

/* wrapper clips video without clipping dropdowns */
.hero-media-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-poster,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 83%, transparent 100%); */
}

.hero-poster {
  z-index: 0;
}

.hero video {
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .38) 45%, rgba(0, 0, 0, .72) 85%, rgba(0, 0, 0, .92) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  /* above overlay, dropdowns inherit */
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
}

.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
  /* white-space: nowrap removed — causes overflow on some viewports */
}

@media (max-width: 900px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(1.6rem, 5vw, 2.6rem);
  }
}

.hero-sub {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
}

/* ============================================================
   SEARCH BAR (Hero)
   ============================================================ */
.search-bar {
  display: inline-flex;
  align-items: stretch;
  background: rgb(28 28 28 / 66%);
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: visible;
  width: min(680px, 92vw);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
  padding: 8px;
}

.s-field {
  flex: 1;
  min-width: 0;
  margin: 14px 18px 14px 22px;
  border-right: 1px solid rgb(255 255 255 / 65%);
  text-align: left;
  cursor: pointer;
  position: relative;
}

.s-field:last-of-type {
  border-right: none;
}

.s-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1px;
  margin-bottom: 5px;
}

.s-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  display: block;
  min-height: 18px;
}

.s-inp {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  width: 100%;
  padding: 0;
}

.s-inp::placeholder {
  color: rgba(255, 255, 255, .4);
}

.s-inp[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.s-btn-wrap {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 6px;
  flex-shrink: 0;
}

.s-btn {
  width: 46px;
  height: 46px;
  background: #fff;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s;
}

.s-btn i {
  color: #111;
  font-size: 15px;
}

.s-btn:hover {
  background: #e4e4e4;
}

/* ============================================================
   DESTINATION DROPDOWN
   ============================================================ */
.dest-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  /* full width of search bar */
  background: #111;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 24px;
  z-index: 400;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .6);
}

.dest-dropdown.open {
  display: block;
}

.dest-dropdown h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.dest-dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dest-dd-item {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.dest-dd-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
  transition: opacity .2s;
}

.dest-dd-item:hover img {
  opacity: .8;
}

.dest-dd-item span {
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   DATE PICKER DROPDOWN
   ============================================================ */
.date-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  /* full width of search bar */
  background: #111;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 24px 28px;
  z-index: 400;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .6);
}

.date-dropdown.open {
  display: block;
}

.date-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.date-dd-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.date-dd-pill {
  background: rgba(255, 255, 255, .15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.date-dd-clear {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
}

.date-dd-clear:hover {
  color: #fff;
}

.date-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  flex: 1;
}

.cal-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: .7;
  transition: opacity .2s;
}

.cal-nav:hover {
  opacity: 1;
}

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

.cal-dow {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
}

.cal-day {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 7px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.cal-day:hover {
  background: rgba(255, 255, 255, .12);
}

.cal-day.empty {
  pointer-events: none;
}

.cal-day.selected,
.cal-day.range-start,
.cal-day.range-end {
  background: #fff;
  color: #111;
  font-weight: 700;
}

.cal-day.range-start {
  border-radius: 6px 0 0 6px;
}

.cal-day.range-end {
  border-radius: 0 6px 6px 0;
}

.cal-day.in-range {
  background: rgba(255, 255, 255, .12);
  border-radius: 0;
}

.cal-day.disabled {
  opacity: .25;
  pointer-events: none;
}

/* Check-out dates that would break the minimum stay: dimmed, not selectable. */
.cal-day.below-min-stay {
  opacity: .32;
  cursor: not-allowed;
}

.cal-day.below-min-stay:hover {
  background: transparent;
}

/* Admin-blocked / reserved dates: faded + struck through, not selectable. */
.cal-day.unavailable-day {
  opacity: .3;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-day.unavailable-day:hover {
  background: transparent;
}

/* ============================================================
   MOBILE SEARCH BAR (≤768px)
   ============================================================ */
.mobile-search {
  display: none;
  width: calc(100% - 32px);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.mobile-search-collapsed {
  display: flex;
  align-items: center;
  background: rgba(28, 28, 28, .92);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  gap: 10px;
}

.mob-left {
  flex: 1;
  min-width: 0;
}

.mob-dest-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.mob-dest-val {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mob-date-val {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  white-space: nowrap;
  flex-shrink: 0;
}

.mob-search-btn {
  width: 38px;
  height: 38px;
  background: #fff;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mob-search-btn i {
  color: #111;
  font-size: 13px;
}

.mobile-search-collapsed.hidden {
  display: none;
}

/* Expanded form */
.mobile-search-expanded {
  display: none;
  background: rgba(22, 22, 22, .96);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 16px 14px;
  backdrop-filter: blur(14px);
  width: 100%;
  box-sizing: border-box;
}

.mobile-search-expanded.open {
  display: block;
}

.mob-field-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .3px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.mob-inp {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  color: #fff;
  width: 100%;
  padding: 4px 0 8px;
  margin-bottom: 16px;
}

.mob-inp::placeholder {
  color: rgba(255, 255, 255, .3);
}

.mob-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  gap: 10px;
  margin-bottom: 14px;
}

.mob-date-field {
  min-width: 0;
}

.mob-date-val2 {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding: 4px 0 8px;
  display: block;
  cursor: pointer;
  min-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-tap-highlight-color: rgba(255, 255, 255, .1);
  user-select: none;
  pointer-events: all;
  position: relative;
  z-index: 10;
}

.mob-guests-inp {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  outline: none;
  font-family: var(--font);
  font-size: 13px;
  color: #fff;
  width: 100%;
  padding: 4px 0 8px;
}

.mob-guests-inp::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.mob-actions {
  display: flex;
  gap: 8px;
}

.mob-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 7px;
  cursor: pointer;
  flex-shrink: 0;
}

.mob-submit-btn {
  flex: 1;
  background: #fff;
  border: none;
  color: #111;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Mobile destination list — inline in form */
.mob-dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4px;
}

.mob-dest-link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  padding: 9px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: color .2s;
}

.mob-dest-link:hover {
  color: #fff;
}

/* Inline date picker inside form */
#mobDateDropdown {
  border-radius: 8px;
  overflow: hidden;
}

/* Mobile calendar — compact */
@media (max-width: 480px) {
  .cal-dow {
    font-size: 10px;
    padding: 3px 0;
  }

  .cal-day {
    font-size: 12px;
    padding: 6px 2px;
  }

  .cal-head {
    margin-bottom: 10px;
  }

  .cal-title {
    font-size: 13px;
  }

  /* date-dd-header compact on mobile */
  .date-dd-header {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .date-dd-title {
    font-size: 12px;
    white-space: nowrap;
  }

  .date-dd-pill {
    font-size: 10px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .date-dd-clear {
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .mobile-search {
    display: block;
  }

  .search-bar {
    display: none !important;
  }

  .mobile-search-collapsed {
    display: flex;
  }

  .mobile-search-collapsed.hidden {
    display: none !important;
  }

  .mobile-search-expanded {
    display: none;
  }

  .mobile-search-expanded.open {
    display: block;
  }

  .hero {
    align-items: center;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

/* ============================================================
   STICKY BOTTOM SEARCH BAR
   ============================================================ */
.sticky-search {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 0 20px 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s, transform .35s;
}

.sticky-search.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-search-inner {
  display: inline-flex;
  align-items: stretch;
  background: #000000b3;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: visible;
  width: min(680px, 95vw);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
  position: relative;
  padding: 8px;
}

/* sticky dropdowns open ABOVE the bar */
.sticky-search-inner .dest-dropdown,
.sticky-search-inner .date-dropdown {
  top: auto;
  bottom: calc(100% + 8px);
}

.ss-field {
  flex: 1;
  min-width: 0;
  /* padding: 13px 20px; */
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
  cursor: pointer;
}

.ss-field:last-of-type {
  border-right: none;
}

.ss-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .2px;
  margin-bottom: 4px;
}

.ss-val {
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  display: block;
}

.ss-inp {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
  width: 100%;
  padding: 0;
}

.ss-inp::placeholder {
  color: rgba(255, 255, 255, .4);
}

.ss-inp[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.ss-btn-wrap {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 6px;
  flex-shrink: 0;
}

.ss-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s;
}

.ss-btn i {
  color: #111;
  font-size: 15px;
}

.ss-btn:hover {
  background: #e4e4e4;
}

/* ============================================================
   MOBILE STICKY SEARCH BAR
   ============================================================ */
.mob-sticky-search {
  display: none;
  /* shown only on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 12px 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s, transform .35s;
}

.mob-sticky-search.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Collapsed state */
.mob-sticky-collapsed {
  display: flex;
  align-items: center;
  background: rgba(22, 22, 22, .97);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, .5);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.mob-sticky-left {
  flex: 1;
  min-width: 0;
}

.mob-sticky-dest-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.mob-sticky-dest-val {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mob-sticky-dates {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  flex-shrink: 0;
}

.mob-sticky-btn {
  width: 38px;
  height: 38px;
  background: #fff;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mob-sticky-btn i {
  color: #111;
  font-size: 14px;
}

/* Expanded state - same as hero mobile expanded */
.mob-sticky-expanded {
  display: none;
  background: rgba(22, 22, 22, .97);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, .5);
  backdrop-filter: blur(14px);
}

.mob-sticky-expanded.open {
  display: block;
}

.mob-sticky-collapsed.hidden {
  display: none;
}

@media (max-width: 768px) {
  .mob-sticky-search {
    display: block;
  }

  .sticky-search {
    display: none !important;
  }
}

.ss-field {
  flex: 1;
  min-width: 0;
  margin: 14px 18px 14px 22px;
  border-right: 1px solid rgb(255 255 255 / 65%);
  text-align: left;
}

.ss-field:last-of-type {
  border-right: none;
}

.ss-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
  margin-bottom: 4px;
}

.ss-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
}

.ss-btn-wrap {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 6px;
  flex-shrink: 0;
}

.ss-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ss-btn i {
  color: #111;
  font-size: 15px;
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.lx-section {
  padding: 68px 0;
  background-color: #000000 !important;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sec-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}

.arr-g {
  display: flex;
  gap: 12px;
}

.arr-b {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: .6;
  padding: 0 4px;
  transition: opacity .2s;
}

.arr-b:hover {
  opacity: 1;
}

.arr-b:disabled {
  opacity: .2;
  cursor: default;
}

.slider-track-wrap {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 12px;
  transition: transform .4s ease;
}

/* ============================================================
   DESTINATION CARDS (section)
   ============================================================ */
.dest-card {
  position: relative;
  flex-shrink: 0;
  width: calc((100% - 48px) / 5);
  display: block;
  text-decoration: none;
}

@media (max-width:1000px) {
  .dest-card {
    width: calc((100% - 24px) / 3);
  }
}

@media (max-width: 600px) {
  .dest-card {
    width: calc((100% - 12px) / 2);
  }
}

.dest-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/.88;
  height: 170px;
    width: 95%;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}

.dest-card:hover .dest-img img {
  transform: scale(1.07);
}

.site-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 700;
}

.site-empty {
  width: 100%;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .035);
  text-align: center;
  font-size: 15px;
}

.dest-lbl {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   VILLA CARDS
   ============================================================ */
.villa-track {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
}

.v-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: block;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  width: calc((100% - 48px) / 4);
  transition: transform .28s;
}

.v-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.v-row .v-loc {
  margin-bottom: 0;
}

.v-row .v-meta {
  margin-bottom: 0;
}

@media (max-width:1000px) {
  .v-card {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 560px) {
  .v-card {
    width: 100%;
  }
}

.v-card:hover {
  transform: translateY(-3px);
  color: #fff;
}

.v-card:hover img {
  transform: scale(1.07);
}

.v-card .v-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.v-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}

.v-body {
  padding: 14px 0 0;
}

.v-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.v-loc {
  font-size: 16px;
  color: #c9c8c5;
  font-style: italic;
  margin-bottom: 10px;
}

.v-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #c9c8c5;
  margin-bottom: 10px;
  align-items: center;
}

.v-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.v-price {
  font-size: 16px;
  font-weight: 700;
}

.v-price .per {
  font-weight: 400;
  color: var(--muted);
  font-size: 15px;
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-wrap {
  background: #000;
  padding: 40px 0px 105px 0;
  text-align: center;
  overflow: hidden;
}

.trusted-lbl {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 65px;
}

.mq-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 0px 100px;
}

.mq-inner {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: mq 110s linear infinite;
}

.mq-inner img {
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .6;
  flex-shrink: 0;
  display: block;
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   FULLY OPERATED
   ============================================================ */
.op-img {
  width: 100%;
  display: block;
  height: 515px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 83%, transparent 100%);
}

.op-body {
  background: var(--dark);
  padding: 72px 0 64px;
  text-align: center;
}

.op-eye {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.op-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dest-card:hover .dest-lbl{
  color: #e9d9c3;
}

.v-card:hover .v-name{
  color: #e9d9c3;
}

.art-card:hover .art-title{
  color: #e9d9c3;
}

.op-desc {
  font-size: 15px;
  color: #f8f7f7;
  max-width: 585px;
  margin: 0 auto 56px;
  line-height: 1.9;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 48px;
  text-align: left;
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width:768px) {
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.f-icon {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}

.f-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.45;
}

.f-text {
  font-size: 16px;
  color:#f7f8f8;
  line-height: 1.6;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-track { display: flex; gap: 16px; transition: transform .4s ease; }
.rev-card  {
  background: #1a1a19;
  border-radius: 12px; padding: 22px 20px;   /* live: rounded-xl */
  flex-shrink: 0; width: calc((100% - 48px) / 4);
  display: flex; flex-direction: column;
}
@media (max-width:1000px) { .rev-card { width: calc((100% - 16px) / 2); } }
@media (max-width: 600px) { .rev-card { width: 100%; } }
/* live puts the Font Awesome Google mark and real star glyphs on this row —
   not a blue letter badge and text stars. Spacing comes from the icon's own
   8px margin, so the row keeps no flex gap of its own. */
/* Inline flow, not flex: live's icon and stars are separated by the 8px icon
   margin PLUS the space between the two tags. A flex row discards that
   whitespace and the gap comes out short. */
.rev-top   { display: block; margin-bottom: 10px; }
/* Exact live values: G 21px with an 8px margin, stars 14px with no margin —
   the ~3.6px between stars is the whitespace separating the tags, and the
   wrapper's -2px lifts the row to sit optically centred against the G. */
.rev-top .fa-brands { font-size: 21px; margin-right: 8px; color: #fff; }
.rev-stars { color: #fff; position: relative; top: -2px; }
.rev-stars i { font-size: 14px; color: #fff; }
.rev-name  { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.rev-text  { font-size: 14px; color: #f7f8f8; line-height: 1.85; margin-bottom: 16px; }
.rev-prop  {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #f7f8f8;
  margin-top: auto;
  align-self: flex-end;
  padding-top: 12px;
}
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.faq-item {
  background: #1a1a19;
  /* border: 1px solid rgba(255, 255, 255, .08); */
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .18s;
  gap: 16px;
}

.faq-q:hover {
  background: rgba(255, 255, 255, .03);
}

.faq-q .qi {
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q {
  background: rgba(255, 255, 255, .025);
}

/* ============================================================
   ARTICLES
   ============================================================ */
.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.art-card {
  display: block;
  text-decoration: none;
  color: #fff;
}

.art-card:hover {
  color: #fff;
}

.art-wrap {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
  /* aspect-ratio: 16/10; */
  height: 200px;
}

.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.art-card:hover .art-img {
  transform: scale(1.05);
}

.art-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 6px;
}

.art-date {
  font-size: 13px;
  color: #8e8b86;
}

.pg-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font);
  padding: 6px 13px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.pg-btn:hover,
.pg-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ============================================================
   SHARED SUCCESS MODAL
   ============================================================ */
.luxuri-success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.luxuri-success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.luxuri-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
}

.luxuri-success-dialog {
  position: relative;
  width: min(100%, 440px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: linear-gradient(180deg, #171717 0%, #0b0b0b 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
  color: #fff;
  padding: 38px 34px 32px;
  text-align: center;
  transform: translateY(14px) scale(.96);
  transition: transform .22s ease;
  overflow: hidden;
}

.luxuri-success-modal.is-open .luxuri-success-dialog {
  transform: translateY(0) scale(1);
}

.luxuri-success-dialog::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
}

.luxuri-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}

.luxuri-success-close:hover {
  background: rgba(255,255,255,.12);
}

.luxuri-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #090909;
  font-size: 28px;
  box-shadow: 0 0 0 10px rgba(255,255,255,.08);
}

.luxuri-success-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.luxuri-success-dialog h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.luxuri-success-dialog p:not(.luxuri-success-kicker) {
  margin: 0 auto 26px;
  max-width: 340px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.65;
}

.luxuri-success-btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #101010;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
}

.luxuri-success-btn:hover {
  background: #e9e9e9;
}

body.luxuri-success-lock {
  overflow: hidden;
}

@media (max-width: 520px) {
  .luxuri-success-dialog {
    padding: 34px 22px 24px;
    border-radius: 18px;
  }

  .luxuri-success-dialog h2 {
    font-size: 22px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.lx-footer {
  background: #000000;
  padding: 60px 0 0;
  /* border-top: 1px solid var(--border); */
}

.foot-brand {
  font-weight: 800;
  font-size: 46px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 22px;
}

.bbb-badge  { display: inline-flex; align-items: stretch; margin-bottom: 36px; overflow: hidden;text-decoration: none; }
.bbb-left   { background: #fff; padding: 5px 8px; display: flex; align-items: center; justify-content: center; }
.bbb-left img { width: 40px; height: 40px; object-fit: contain; }
.bbb-right  { background: #005F86; padding: 10px 14px; display: flex; flex-direction: column; justify-content: center; }
.bbb-right div { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 1px; line-height: 1.35; }
.bbb-arrow  { background: #005F86; padding: 10px 14px 10px 4px; display: flex; align-items: center; justify-content: center; }
.bbb-arrow i { color: #fff; font-size: 13px; }

.foot-lh {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.foot-ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding-left: 0px;

}

.foot-ul a {
  color: #f7f8f8;
  text-decoration: none;
  font-size: 19px;
  font-weight: 400;
  transition: color .2s;
}

.foot-ul a:hover {
  color: #e9d9c3;
}

.follow-h {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #f7f8f8;
}

.soc-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.soc-i {
  width: 36px;
  height: 36px;
  background: #f7f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  border: 1px solid rgba(255, 255, 255, .2);
}

.soc-i:hover {
  background: #e9d9c3;;
}

.foot-divider {
  /* border: none; */
  /* border-top: 1px solid var(--border) !important; */
  margin: 48px 0 20px;
  border-width: 1px !important;
}

.foot-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;   /* live: row 16 / column 32, so wrapped rows sit closer */
  padding: 22px 40px 20px;
  /* extra bottom padding to clear sticky bar */
  flex-wrap: wrap;
}

/* live: the icon and label sit in normal inline flow separated by a single
   space (~4px) — not a flex gap — and both render in pure white */
.foot-contact a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  transition: color .2s;
}

.foot-contact a:hover {
  color: #e9d9c3;;
}

.foot-contact i {
  font-size: 16px;   /* live: same size as the label */
  color: #fff;
}

@media (max-width: 768px) {
  .foot-contact {
    padding-bottom: 120px;
    gap: 24px;
  }
}
.featured-villas-wrap {
  overflow: visible;
}

.featured-villas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
}

.featured-villas-grid .v-card {
  width: 100%;
}

@media (max-width: 1000px) {
  .featured-villas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .featured-villas-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HEADER + FOOTER (site-wide) — migrated from home2.css so every
   page shares the live-matched navbar, side drawer and footer.
   Tokens, sizes and animation specs measured on luxuri.com.
   ============================================================ */
/* ============================================================
   LUXURI — Home v2 (live-site replica layer)
   Loaded ONLY by index.php — overrides style.css on that page.
   Tokens taken from luxuri.com build CSS:
     fonts:  headings "Mulish", body "Noto Sans"
     zinc:   50 #f8f7f7 / 200 #c9c8c5 / 300 #aba9a5 / 400 #8e8b86
             700 #2d2c2a / 800 #1a1a19 / 900 #0b0a0a
     amber:  200 #e9d9c3 (hover gold) / 300 #dec6a6
   ============================================================ */
:root {
  --lx-zinc-50: #f8f7f7;
  --lx-zinc-200: #c9c8c5;
  --lx-zinc-300: #aba9a5;
  --lx-zinc-400: #8e8b86;
  --lx-zinc-500: #6f6c67;
  --lx-zinc-700: #2d2c2a;
  --lx-zinc-800: #1a1a19;
  --lx-gold: #e9d9c3;          /* amber-200 */
  --lx-gold-border: #dec6a6;   /* amber-300 */
  --lx-font-body: 'Noto Sans', ui-sans-serif, system-ui, sans-serif;
  --lx-font-accent: 'Mulish', ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Navbar (live: 16px / 400, gold hover already present) */
.lx-nav-links a {
  font-size: 16px;
  font-weight: 400;
}

/* ---------- Navbar (live: 32px padding + 22px logo = 86px bar; height is
   fixed because logo.png has transparent padding that inflates flex sizing) */
.lx-nav {
  height: 90px;
  padding: 4px 32px 0;   /* extra room above the nav content */
  align-items: center;
}

.lx-nav-right,
.lx-nav-links {
  gap: 48px;
}

.lx-nav-links a {
  font-family: var(--lx-font-body);
  font-size: 16px;
  font-weight: 500;
}

/* ---------- Footer (live: <footer class="pt-12 font-light">, h3.uppercase
   headings, 16px links with 16px gaps) — page-scoped to index */
.lx-footer {
  padding-top: 48px;
  font-weight: 300;
}

.foot-lh {
  font-family: var(--lx-font-accent);
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  letter-spacing: .025em;
  margin-bottom: 24px;
}

.follow-h {
  font-family: var(--lx-font-accent);
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 300;
  letter-spacing: .025em;
}

.foot-ul {
  gap: 8px 16px;
}

.foot-ul a {
  font-family: var(--lx-font-body);
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

/* ---------- Logo + hamburger (logo.png is a padded wordmark; width-based
   sizing matches live's ~134px nav / ~196px footer wordmark) */
.lx-brand img {
  display: block;
  width: 138px;
  height: auto;
  /* logo.png carries 37% / 31% transparent padding top / bottom — crop it so
     the wordmark sits where live's tight SVG does */
  margin: -24px 0 -20px;
}

.foot-brand img {
  display: block;
  width: 205px;
  height: auto;
  /* same crop: box is 96px but the letters are only 31px, 36px down */
  margin: -36px 0 -30px;
}

.lx-hamburger {
  font-size: 24px; /* live burger icon is 24px */
}

/* ---------- Footer social icons (live: 32px white circles, black glyphs) */
.soc-i {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

/* ---------- BBB badge — live renders its badge as a 170 x 47 inline SVG,
   so match that box exactly with our img + text build */
.bbb-badge {
  height: 47px;
  margin-bottom: 28px;
}

.bbb-left { padding: 4px 7px; }

.bbb-left img { width: 35px; height: 35px; }

.bbb-right { padding: 8px 12px; }

.bbb-right div { font-family: var(--lx-font-body); font-size: 11px; font-weight: 500; letter-spacing: .6px; line-height: 1.3; }

.bbb-arrow { padding: 8px 11px 8px 3px; }

.bbb-arrow i { font-size: 12px; }

/* ---------- Footer contact line: light weight (was 500/bold-looking) */
.foot-contact a {
  font-family: var(--lx-font-body);
  font-weight: 300;
}

/* ---------- Side drawer: keep index.php's typography. The page-wide
   Noto Sans / 300 body rule was re-rendering the ✕ and – glyphs wider
   and lightening "FOR GUESTS", so pin the drawer back to Mulish. */
/* live: "For Guests" = font-accent text-xl semibold tracking-wide */
.drawer-eyebrow {
  font-family: var(--lx-font-accent);
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 600;
  letter-spacing: .025em;
  color: var(--lx-zinc-50);
}

/* live: both controls are 24px stroke icons in zinc-50 */
.drawer-x,
.drawer-dash {
  width: 24px;
  height: 24px;
  color: var(--lx-zinc-50);
  opacity: 1;
}

.drawer-x svg,
.drawer-dash svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* live links: text-base/7 font-normal text-zinc-300 (body font) */
.drawer-links li a {
  font-family: var(--lx-font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--lx-zinc-300);
  padding: 6px 0;
}

.drawer-links li + li { margin-top: 2px; }

/* ---------- Footer left column spacing.
   The wordmark image carries a -30px crop margin that collapses through this
   anchor, so subtract it: 46px here renders as a 16px gap to the BBB badge. */
.foot-brand {
  margin-bottom: 46px;
}

.bbb-badge {
  margin-bottom: 48px;
}

/* "Follow Us" sits closer to its icons */
.follow-h {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  /* live nav: p-6 (24px), 72px tall — ours was 86px / 32px */
  .lx-nav { height: 72px; padding: 0 24px; }
  .lx-brand img { width: 135px; }   /* live wordmark is 135 x 22 here */
}

@media (max-width: 640px) {
  /* logo.png crop margins scale with its width (135px on mobile) */
  .lx-brand img { margin: -23px 0 -20px; }
}

/* ============================================================
   SIDE NAV — live's mobile menu panel (measured at 390 x 844):
   full-bleed panel, bg #0b0a0a, 24px padding, black/75 overlay,
   brand 135 x 22 top-left with the close X opposite, links 16px
   ============================================================ */
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.drawer-brand {
  display: none;           /* live: sm:hidden */
}

.drawer-brand img {
  display: block;
  width: 135px;
  height: auto;
  margin: -23px 0 -20px;   /* crop logo.png's transparent padding */
}

@media (max-width: 639px) {
  .drawer-brand { display: block; }
}

@media (max-width: 768px) {
  /* live: the panel covers the full viewport width */
  .drawer {
    width: 100%;
    max-width: 100%;
    background: #0b0a0a;          /* live: zinc-900 */
    padding: 24px 24px 40px;
    border-left: 0;
  }

  .drawer-overlay {
    background: rgba(0, 0, 0, .75);   /* live: black/75 */
  }

  .drawer-top { margin-bottom: 26px; }

  .drawer-header { margin-bottom: 14px; }

  /* live links: 16px, text starting at the 24px gutter */
  .drawer-links li a { padding: 8px 0; }
  .drawer-links li + li { margin-top: 0; }
}

/* ============================================================
   SIDE NAV MOTION — live's spec:
     panel  : translate-x-full → translate-x-0, 300ms ease-out
     dialog : opacity 0 → 1, 300ms ease-out  (so the panel fades in
              while sliding — the duplicate wordmark never reads as a
              second logo flying across)
     overlay: black/75, opacity 0 → 1, 300ms
     items  : NO per-item stagger (ours delayed each link 220–570ms,
              which is what made it feel unsmooth)
     width  : w-full on mobile, sm:w-110 (440px) from 640px up
   ============================================================ */
.drawer {
  background: #0b0a0a;   /* live: bg-zinc-900 (ours was #111 on desktop) */
  opacity: 0;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);   /* live: shadow-2xl */
  /* live leave: duration-200 ease-in */
  transition: transform .2s ease-in, opacity .2s ease-in;
}

.drawer.open {
  opacity: 1;
  /* live enter: duration-300 ease-out */
  transition: transform .3s ease-out, opacity .3s ease-out;
}

.drawer-overlay {
  background: rgba(0, 0, 0, .75);   /* live: bg-black/75 (ours was .55) */
  transition: opacity .2s ease-in;     /* live leave */
}

.drawer-overlay.open {
  transition: opacity .3s ease-out;    /* live enter */
}

/* live staggers the items in: each enters 300ms ease-out from
   opacity-0 translate-x-4 (16px), header at delay 150ms, links at
   350/450/550/650/750ms. On close the panel fades as one piece, so
   items reset instantly for a clean replay. */
.drawer-header,
.drawer-links li {
  opacity: 0;
  transform: translateX(16px);
  transition: none;
  transition-delay: 0s;
}

.drawer.open .drawer-header,
.drawer.open .drawer-links li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .3s ease-out, transform .3s ease-out;
}

.drawer.open .drawer-header { transition-delay: .15s; }

.drawer.open .drawer-links li:nth-child(1) { transition-delay: .35s; }

.drawer.open .drawer-links li:nth-child(2) { transition-delay: .45s; }

.drawer.open .drawer-links li:nth-child(3) { transition-delay: .55s; }

.drawer.open .drawer-links li:nth-child(4) { transition-delay: .65s; }

.drawer.open .drawer-links li:nth-child(5) { transition-delay: .75s; }

/* keep the +/- collapse working */
.drawer.collapsed .drawer-links {
  max-height: 0;
  opacity: 0;
}

@media (min-width: 640px) {
  .drawer { width: 440px; max-width: 440px; }   /* live: sm:w-110 */
}

/* ============================================================
   SIDE NAV +/- TOGGLE — live's spec:
     icons : two stacked SVGs cross-fading with a 90deg rotate,
             transition-all duration-300 ease-in-out
     list  : enter  transition-all ease-out  duration-500
             leave  transition-all ease-in   duration-300
             (opacity 0<->1 with max-h 0 <-> screen, overflow hidden)
   ============================================================ */
.drawer-icon {
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.drawer-icon-minus { opacity: 1; transform: rotate(0deg); }

.drawer-icon-plus  { opacity: 0; transform: rotate(90deg); }

.drawer.collapsed .drawer-icon-minus { opacity: 0; transform: rotate(-90deg); }

.drawer.collapsed .drawer-icon-plus  { opacity: 1; transform: rotate(0deg); }

.drawer-links {
  overflow: hidden;
  max-height: 100vh;          /* live: max-h-screen */
  opacity: 1;
  transition: max-height .5s ease-out, opacity .5s ease-out;
}

.drawer.collapsed .drawer-links {
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease-in, opacity .3s ease-in;
}

/* ============================================================
   FOOTER — mobile layout, matching live (measured at 390 x 844).
   Live's stacking order is:
     logo → LINKS + vertical link list → FOLLOW US + socials → BBB
   with gaps 80 / 24 / 32 / 8 / 32 / 48px. Ours had BBB and Follow Us
   above the links and rendered the links as a horizontal row.
   ============================================================ */
@media (max-width: 768px) {
  .lx-footer .row {
    display: flex;
    flex-direction: column;
    /* .wrap already supplies the 24px gutter — just cancel Bootstrap's
       negative row margin so blocks land at L24 like live */
    margin: 0;
  }

  /* let the two Bootstrap columns' children order freely in one stack */
  .lx-footer .col-md-5,
  .lx-footer .col-md-6 {
    display: contents;
  }

  .foot-brand {
    order: 1;
    margin-bottom: 80px;    /* live: logo → LINKS */
  }

  .foot-lh {
    order: 2;
    margin-bottom: 24px;
  }

  .foot-ul {
    order: 3;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
  }

  .follow-h {
    order: 4;
    margin-bottom: 8px;
  }

  .soc-row {
    order: 5;
    margin-bottom: 32px;
  }

  .bbb-badge {
    order: 6;
    margin-bottom: 0;
  }

  /* divider + contact: live keeps these tight, and the copyright sits
     right under the numbers rather than a screen away */
  .foot-divider { margin: 48px 0 0; }

  .foot-contact {
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px 10px;
  }

  .lx-footer > div[style*="text-align:center"] {
    /* clearance handled by the inline padding in footer.php (140px) */
  }
}

/* ---------- Tighter gap between "For Guests" and the first link */
.drawer-header {
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .drawer-header { margin-bottom: 8px; }
}

/* ============================================================
   HAMBURGER MORPH — live's spec: three bars, transition-all
   duration-300; open state = top bar rotates 45deg down onto the
   centre, middle fades out, bottom rotates -45deg up.
   ============================================================ */
.lx-burger-bar {
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

.lx-hamburger.is-open .lx-burger-top {
  transform: translateY(7px) rotate(45deg);
}

.lx-hamburger.is-open .lx-burger-mid {
  opacity: 0;
}

.lx-hamburger.is-open .lx-burger-bot {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Slightly smaller hamburger (was 34 x 28) */
.lx-burger {
  width: 27px;
  height: 25px;
}

.lx-burger-bar { width: 27px; }

.lx-burger-top { top: 5px; }

.lx-burger-mid { top: 11.5px; }

.lx-burger-bot { top: 18px; }

.lx-hamburger.is-open .lx-burger-top { transform: translateY(6.5px) rotate(45deg); }

.lx-hamburger.is-open .lx-burger-bot { transform: translateY(-6.5px) rotate(-45deg); }

/* Footer column: live clamps the footer to the 1280px content box
   (32px side gutters). Other pages' generic .wrap is 1400px/60px, which
   let the footer run wider than live — pin it here site-wide. */
.lx-footer .wrap {
  max-width: 1280px;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .lx-footer .wrap { padding: 0 24px; }
}


/* FA family repair (site-wide): the client's FA build maps .fa/.fa-solid/
   .fa-regular to "Font Awesome 6 Pro", which it doesn't ship. Point the
   legacy classes back at the free font; sharp/brands keep the build's
   fonts. :not(.fa-sharp) lifts specificity above the build's own rules. */
.fa:not(.fa-sharp),
.fas:not(.fa-sharp),
.fa-solid:not(.fa-sharp) {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.far:not(.fa-sharp),
.fa-regular:not(.fa-sharp) {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}


/* Copyright line: the big bottom clearance exists only to keep the line
   above the sticky search bar — so apply it ONLY while the bar is visible
   (it toggles .visible and precedes the footer in the DOM). When the bar
   is hidden, keep the footer tight. */
.foot-copyright {
  text-align: center;
  padding: 4px 0 56px;
  font-size: 14px;
  color: #aba9a5;
  transition: padding-bottom .3s ease;
}

/* desktop bar: 96px + 20px inset */
.sticky-search.visible ~ footer .foot-copyright {
  padding-bottom: 140px;
}

/* mobile bar: 94px + 14px inset */
@media (max-width: 768px) {
  .mob-sticky-search.visible ~ footer .foot-copyright,
  .sticky-search.visible ~ footer .foot-copyright {
    padding-bottom: 118px;
  }
}


/* Scroll-reveal — live: wow.js + animate.css fadeInUp on every card
   (the puffIn class in live's markup is dead: magic.css never ships).
   animate.css fadeInUp = rise 20px + fade, 1s, fill both; wow adds it
   when the card enters the viewport, delayed data-wow-delay = i*50ms. */
.lx-reveal {
  opacity: 0;
}

.lx-reveal.lx-revealed {
  animation: lxFadeInUp 1s both;
}

@keyframes lxFadeInUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to   { opacity: 1; transform: translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
  .lx-reveal { opacity: 1; }
  .lx-reveal.lx-revealed { animation: none; }
}

/* ── Map styling ─────────────────────────────────────────────────────────────
   Property and destination maps render in black & white to match the site's
   monochrome treatment. The filter is applied to the tile layer only, so the
   black home pin and its halo stay crisp on top. */
[data-lx-map] .leaflet-tile-pane {
  filter: grayscale(100%) contrast(1.04);
}
/* The Google Maps embed used when a villa has no coordinates gets the same
   treatment, so both map variants look identical. */
.prop-map iframe {
  filter: grayscale(100%) contrast(1.04);
}
