:root{
  --ink:#102a27;
  --brand:#075e54;
  --brand-dark:#06483f;
  --soft:#eef7f4;
  --cream:#fbfaf6;
  --card:#ffffff;
  --muted:#64748b;
  --line:#dce7e4;
  --success:#166534;
  --warning:#a16207;
  --radius:16px;
  --shadow:0 10px 28px rgba(15,42,39,.07);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.5;
  font-size:15px;
}

a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
img{max-width:100%;display:block}

.wrap{
  width:min(1160px,calc(100% - 40px));
  margin:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.header-row{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

.brand img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand-copy small{
  display:block;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.07em;
}

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

.btn{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:8px 13px;
  background:#fff;
  color:var(--ink);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.btn-primary{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.btn-primary:hover{background:var(--brand-dark)}

.btn-soft{
  background:var(--soft);
  border-color:#cde3de;
  color:var(--brand);
}

.kicker{
  color:var(--brand);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.section{
  padding:52px 0;
}

.section-alt{
  background:#f2f7f5;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.section-head h2{
  margin:5px 0 0;
  font-size:clamp(24px,3.2vw,34px);
  line-height:1.15;
}

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

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.chip{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 9px;
  border-radius:999px;
  background:var(--soft);
  color:var(--brand);
  font-size:10px;
  font-weight:800;
}

/* HOME */

.home-hero{
  padding:78px 0 58px;
  background:
    radial-gradient(circle at 85% 15%,rgba(7,94,84,.10),transparent 33%),
    linear-gradient(180deg,#fff,#f6fbf9);
}

.home-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  align-items:center;
  gap:50px;
}

.home-hero h1{
  max-width:760px;
  margin:10px 0 17px;
  font-size:clamp(42px,6vw,72px);
  line-height:.99;
  letter-spacing:-.045em;
}

.home-hero p{
  max-width:680px;
  color:var(--muted);
  font-size:17px;
}

.search-panel{
  margin-top:28px;
  padding:13px;
  display:grid;
  grid-template-columns:1fr 190px auto;
  gap:9px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  box-shadow:var(--shadow);
}

.search-panel input,
.search-panel select{
  min-height:50px;
  border:1px solid var(--line);
  border-radius:11px;
  padding:0 13px;
  background:#fff;
}

.hero-trust{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.trust-card{
  min-height:142px;
  padding:19px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  box-shadow:var(--shadow);
}

.trust-card strong{
  display:block;
  font-size:27px;
}

.trust-card span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}

.property-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.property-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
}

.property-card-media{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:
    linear-gradient(135deg,#dcece8,#edf6f3);
}

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

.photo-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  padding:30px;
  text-align:center;
  color:var(--brand);
  font-weight:900;
  background:
    radial-gradient(circle at 70% 20%,rgba(7,94,84,.12),transparent 28%),
    linear-gradient(135deg,#edf7f4,#dcebe7);
}

.card-badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 9px;
  background:rgba(255,255,255,.93);
  border-radius:999px;
  font-size:10px;
  font-weight:900;
}

.property-card-body{padding:18px}

.property-card h3{
  margin:0;
  font-size:18px;
  line-height:1.3;
}

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

.card-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
  margin:16px 0;
}

.card-stat{
  padding:11px;
  background:#f7faf9;
  border-radius:12px;
}

.card-stat strong{
  display:block;
  font-size:16px;
}

.card-stat span{
  color:var(--muted);
  font-size:10px;
}

.area-grid,
.why-grid,
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.info-card{
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
}

.info-card h3{
  margin:8px 0 5px;
  font-size:15px;
}

.info-card p{
  margin:0;
  color:var(--muted);
  font-size:12px;
}

.info-symbol{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:var(--soft);
  color:var(--brand);
  font-weight:900;
}

/* PROPERTY DETAIL */

.property-top{
  padding:28px 0 20px;
  background:#fff;
}

.breadcrumb{
  margin-bottom:16px;
  color:var(--muted);
  font-size:12px;
}

.property-hero{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:26px;
  align-items:start;
}

.property-summary h1{
  max-width:760px;
  margin:7px 0 9px;
  font-size:clamp(30px,3.8vw,44px);
  line-height:1.07;
  letter-spacing:-.028em;
  font-weight:800;
}

.property-address{
  max-width:760px;
  margin:9px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.property-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
  margin:18px 0;
}

.property-stat{
  min-height:82px;
  padding:12px 13px;
  background:#f8fbfa;
  border:1px solid #ebf1ef;
  border-radius:12px;
}

.property-stat strong{
  display:block;
  font-size:18px;
  line-height:1.2;
}

.property-stat span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.02em;
  text-transform:uppercase;
  font-weight:800;
}

.property-stat small{
  display:block;
  margin-top:5px;
  color:#6f817d;
  font-size:9px;
  line-height:1.35;
  font-weight:700;
}

.property-stat.is-full strong{
  color:#9a5a10;
  font-size:16px;
}

.property-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:17px;
}

.hero-photo{
  min-height:270px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background:#e9f2ef;
  box-shadow:var(--shadow);
}

.hero-photo img{
  width:100%;
  height:270px;
  object-fit:cover;
}

.hero-photo .photo-fallback{
  height:270px;
}

.gallery-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-top:9px;
}

.gallery-thumb{
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:10px;
  border:1px solid var(--line);
  background:#edf5f2;
  cursor:pointer;
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-more{
  display:grid;
  place-items:center;
  height:100%;
  background:#eef6f3;
  color:var(--brand);
  font-size:10px;
  font-weight:800;
}

.detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:24px;
}

.content-card{
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
}

.content-card + .content-card{
  margin-top:14px;
}

.content-card h2{
  margin:0 0 13px;
  font-size:21px;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
}

.price-card{
  padding:14px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
}

.price-card h3{
  margin:0;
  font-size:15px;
}

.price-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid #edf2f1;
  font-size:12px;
}

.price{
  font-size:20px;
  font-weight:800;
  color:var(--brand);
}

.availability-good{
  color:var(--success);
  font-weight:900;
}

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

.amenity-card{
  min-height:70px;
  padding:11px 12px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
  opacity:0;
  transform:translateY(8px);
  transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease;
}

.amenity-card.is-visible{
  animation:amenityReveal .42s cubic-bezier(.2,.8,.2,1) both;
  animation-delay:var(--amenity-delay,0ms);
}

.amenity-icon{
  flex:0 0 36px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(145deg,var(--soft),#fff);
  color:var(--brand);
  box-shadow:inset 0 0 0 1px rgba(7,94,84,.08);
}

.amenity-icon svg{
  width:20px;
  height:20px;
  display:block;
  transition:transform .24s ease;
}

.amenity-card span:last-child{
  font-size:11px;
  font-weight:750;
  line-height:1.3;
}

@media (hover:hover){
  .amenity-card:hover{
    transform:translateY(-2px);
    border-color:rgba(7,94,84,.24);
    box-shadow:0 8px 22px rgba(15,23,42,.07);
  }

  .amenity-card:hover .amenity-icon svg{
    transform:translateY(-1px) scale(1.08);
  }
}

@keyframes amenityReveal{
  from{opacity:0;transform:translateY(8px) scale(.985)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

@media (prefers-reduced-motion:reduce){
  .amenity-card,
  .amenity-card.is-visible{
    opacity:1;
    transform:none;
    animation:none!important;
    transition:none!important;
  }

  .amenity-icon svg{transition:none!important}
}

.hidden-amenity{display:none}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

.location-box{
  padding:17px;
  border:1px solid var(--line);
  border-radius:12px;
}

.nearby-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.nearby-item{
  padding:8px 10px;
  border-radius:999px;
  background:#f3f7f6;
  font-size:11px;
  font-weight:700;
}

.sticky-card{
  position:sticky;
  top:94px;
  padding:21px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  box-shadow:var(--shadow);
}

.sticky-card h3{
  margin:0 0 7px;
}

.sticky-card .price{
  margin:12px 0 4px;
}

.enquiry-form{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.field{
  display:grid;
  gap:5px;
}

.field.full{
  grid-column:1/-1;
}

.field label{
  color:#475569;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.field input,
.field select,
.field textarea{
  width:100%;
  min-height:43px;
  padding:9px 10px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
}

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

.form-message{
  display:none;
  padding:10px;
  border-radius:10px;
  font-size:11px;
}

.form-message.show{display:block}
.form-message.ok{background:#ecfdf5;color:#166534}
.form-message.err{background:#fef2f2;color:#991b1b}

.mobile-actions{display:none}

.footer{
  padding:30px 0;
  background:#0b2926;
  color:#d5e7e3;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer small{color:#9eb9b4}

@media(max-width:980px){
  .home-hero-grid,
  .property-hero,
  .detail-layout{
    grid-template-columns:1fr;
  }

  .property-grid{grid-template-columns:repeat(2,1fr)}
  .area-grid,.why-grid,.steps-grid{grid-template-columns:repeat(2,1fr)}
  .amenity-grid{grid-template-columns:repeat(3,1fr)}
  .sticky-card{position:static}
}

@media(max-width:680px){
  .wrap{width:min(100% - 24px,1180px)}

  .nav .nav-hide{display:none}

  .home-hero{
    padding:48px 0 38px;
  }

  .home-hero-grid{gap:28px}

  .search-panel{
    grid-template-columns:1fr;
  }

  .hero-trust,
  .property-grid,
  .property-stats,
  .price-grid,
  .location-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .area-grid,
  .why-grid,
  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .amenity-grid{
    grid-template-columns:1fr 1fr;
    gap:7px;
  }

  .amenity-card{
    min-height:62px;
    padding:9px 10px;
    gap:8px;
  }

  .amenity-icon{
    flex-basis:32px;
    width:32px;
    height:32px;
    border-radius:9px;
  }

  .amenity-icon svg{
    width:18px;
    height:18px;
  }

  .section{padding:45px 0}

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .hero-photo,
  .hero-photo img,
  .hero-photo .photo-fallback{
    min-height:230px;
    height:230px;
  }

  .gallery-strip{
    grid-template-columns:repeat(3,1fr);
  }

  .mobile-actions{
    position:fixed;
    z-index:95;
    left:0;
    right:0;
    bottom:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:9px 12px;
    background:rgba(255,255,255,.97);
    border-top:1px solid var(--line);
  }

  body.property-page{
    padding-bottom:68px;
  }
}

/* HOME V5.2 — all current properties */

.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

.nav-link{
  padding:10px 5px;
  color:#425b57;
  font-size:13px;
  font-weight:800;
}

.nav-link:hover{color:var(--brand)}

.btn-large{
  min-height:42px;
  padding:9px 15px;
}

.home-hero{
  padding:54px 0 44px;
}

.home-hero-grid{
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:38px;
}

.home-hero h1{
  max-width:760px;
  margin:11px 0 16px;
  font-size:clamp(34px,4.3vw,52px);
  line-height:1.02;
  letter-spacing:-.042em;
}

.home-hero p{
  max-width:680px;
  margin:0;
  font-size:15px;
  line-height:1.65;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.hero-note{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:#58706c;
  font-size:12px;
  font-weight:700;
}

.hero-note-dot,
.availability-dot{
  width:7px;
  height:7px;
  flex:0 0 7px;
  border-radius:50%;
  background:#16a34a;
  box-shadow:0 0 0 4px rgba(22,163,74,.11);
}

.trust-card{
  min-height:126px;
  padding:18px;
}

.trust-card-featured{
  background:linear-gradient(135deg,#075e54,#0d7568);
  color:#fff;
  border-color:transparent;
}

.trust-card-featured span{color:#d7eeea}

.properties-section{
  background:#fff;
}

.properties-heading{
  align-items:end;
  margin-bottom:18px;
}

.section-intro{
  max-width:650px;
  margin:9px 0 0;
  color:var(--muted);
  font-size:14px;
}

.results-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:6px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#f8fbfa;
  color:#526964;
  font-size:12px;
  font-weight:900;
}

.property-toolbar{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px auto;
  gap:9px;
  margin-bottom:16px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#f8fbfa;
}

.property-toolbar input,
.property-toolbar select{
  width:100%;
  min-height:40px;
  border:1px solid #d5e4e0;
  border-radius:10px;
  padding:0 12px;
  background:#fff;
  color:var(--ink);
  outline:none;
}

.property-toolbar input:focus,
.property-toolbar select:focus{
  border-color:#65a89f;
  box-shadow:0 0 0 3px rgba(7,94,84,.08);
}

.toolbar-clear{min-width:76px}

.property-grid{
  gap:20px;
}

.property-card{
  display:flex;
  min-width:0;
  flex-direction:column;
  box-shadow:0 12px 34px rgba(15,42,39,.07);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.property-card:hover{
  transform:translateY(-3px);
  border-color:#c8ddd8;
  box-shadow:0 18px 42px rgba(15,42,39,.11);
}

.property-card-media{
  display:block;
  aspect-ratio:16/10;
}

.property-card-media img{
  transition:transform .3s ease;
}

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

.availability-badge{
  position:absolute;
  right:12px;
  bottom:12px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  box-shadow:0 5px 16px rgba(0,0,0,.08);
  color:#38534e;
  font-size:10px;
  font-weight:900;
}

.availability-badge.is-check .availability-dot{
  background:#d97706;
  box-shadow:0 0 0 4px rgba(217,119,6,.11);
}

.property-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:18px;
}

.property-card-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.property-capacity{
  color:#78908b;
  font-size:10px;
  font-weight:800;
}

.property-card h3{
  margin-top:6px;
  font-size:19px;
}

.property-card h3 a:hover{color:var(--brand)}

.property-audiences{
  margin-top:10px;
}

.property-description{
  display:-webkit-box;
  overflow:hidden;
  margin:12px 0 0;
  color:#667b77;
  font-size:12px;
  line-height:1.55;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

.sharing-list{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:13px;
}

.sharing-pill{
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-height:29px;
  padding:5px 8px;
  border:1px solid #e0ebe8;
  border-radius:9px;
  background:#fafcfb;
  color:#5f746f;
  font-size:9px;
  font-weight:800;
}

.sharing-pill b{
  color:var(--ink);
  font-size:10px;
}

.card-price-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:16px;
}

.price-label{
  display:block;
  color:#7a8e8a;
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.card-price{
  display:block;
  margin-top:2px;
  color:var(--brand);
  font-size:20px;
}

.availability-text{
  max-width:145px;
  color:#8b6a2b;
  text-align:right;
  font-size:10px;
  font-weight:900;
}

.availability-text.good{color:var(--success)}

.property-card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:14px;
}

.property-card-actions .btn{
  min-height:42px;
  padding:8px 10px;
  font-size:11px;
}

.empty-state{
  grid-column:1/-1;
  padding:38px 24px;
  border:1px dashed #cbded9;
  border-radius:13px;
  background:#f9fcfb;
  text-align:center;
}

.empty-state h3{margin:0 0 6px}
.empty-state p{margin:0 0 16px;color:var(--muted);font-size:13px}
.error-state{background:#fffafa;border-color:#efd7d7}

.property-loading{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.property-loading div{
  min-height:360px;
  border-radius:16px;
  background:linear-gradient(90deg,#f2f6f5 25%,#fafcfb 40%,#f2f6f5 60%);
  background-size:300% 100%;
  animation:nestin-loading 1.3s ease infinite;
}

@keyframes nestin-loading{
  0%{background-position:100% 0}
  100%{background-position:0 0}
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
  color:#bad1cc;
  font-size:12px;
  font-weight:800;
}

.footer-links a:hover{color:#fff}

@media(max-width:980px){
  .property-toolbar{grid-template-columns:minmax(0,1fr) 190px auto}
  .property-loading{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:760px){
  .nav-link{display:none}
  .brand-copy{font-size:14px}
  .brand-copy small{font-size:8px}
  .brand img{width:43px;height:43px}
}

@media(max-width:680px){
  .home-hero{padding:44px 0 36px}
  .home-hero h1{font-size:clamp(34px,11vw,48px)}
  .home-hero p{font-size:14px}

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

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

  .trust-card{
    min-height:105px;
    padding:15px;
  }

  .trust-card strong{font-size:23px}

  .property-toolbar{
    grid-template-columns:1fr;
    padding:9px;
  }

  .toolbar-clear{width:100%}

  .property-grid,
  .property-loading{
    grid-template-columns:1fr;
  }

  .property-card-actions{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{display:grid}
  .footer-links{gap:13px}
}

@media(max-width:420px){
  .header-row{min-height:66px}
  .brand-copy small{display:none}
  .nav .btn{min-height:40px;padding:8px 11px;font-size:11px}
  .property-card-actions{grid-template-columns:1fr}
  .area-grid,.why-grid,.steps-grid{grid-template-columns:1fr}
}


/* PUBLIC UI V5.5 — compact premium typography */
.property-page .kicker{font-size:10px;letter-spacing:.10em}
.property-page .property-summary>.chips{margin-top:8px}
.property-page .property-actions .btn{min-height:40px;padding:8px 13px}
.property-page .hero-photo .photo-fallback{padding:24px;font-size:14px;line-height:1.5;font-weight:800}
.property-page #availability{padding-top:44px}
.property-page .section-head h2{font-size:24px}
.property-page .price-row{margin-top:10px;padding-top:9px}
.property-page .sticky-card{border-radius:15px}

@media(max-width:980px){
  .property-hero{gap:20px}
  .property-summary h1{max-width:850px;font-size:clamp(30px,6vw,42px)}
}

@media(max-width:680px){
  body{font-size:14px}
  .wrap{width:min(100% - 24px,1160px)}
  .property-top{padding:22px 0 16px}
  .breadcrumb{margin-bottom:12px}
  .property-summary h1{font-size:clamp(28px,9vw,38px);line-height:1.08}
  .property-address{font-size:13px}
  .property-stats{grid-template-columns:1fr 1fr;margin:15px 0}
  .property-stat{min-height:74px}
  .property-stat:last-child{grid-column:1/-1}
  .property-actions{display:grid;grid-template-columns:1fr 1fr}
  .property-actions .btn{width:100%}
  .hero-photo,.hero-photo img,.hero-photo .photo-fallback{min-height:220px;height:220px}
  .section{padding:42px 0}
  .content-card{padding:16px}
}

@media(max-width:420px){
  .header-row{min-height:60px}
  .brand img{width:38px;height:38px}
  .brand-copy{font-size:13px}
  .property-actions{grid-template-columns:1fr}
  .property-stats{grid-template-columns:1fr}
  .property-stat:last-child{grid-column:auto}
}


/* PUBLIC UI V5.6 — refined, lighter property presentation */
.property-page .property-top{
  padding:24px 0 18px;
  background:linear-gradient(180deg,#ffffff 0%,#fdfefd 100%);
}

.property-page .breadcrumb{
  margin-bottom:14px;
  color:#71827e;
  font-size:11px;
}

.property-page .property-hero{
  grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);
  gap:30px;
  align-items:center;
}

.property-page .property-summary h1{
  max-width:760px;
  margin:8px 0 10px;
  color:#15342f;
  font-size:clamp(30px,3vw,40px);
  line-height:1.13;
  letter-spacing:-.026em;
  font-weight:600;
  text-wrap:balance;
}

.property-page .kicker{
  color:#157568;
  font-size:9px;
  font-weight:700;
  letter-spacing:.13em;
}

.property-page .property-address{
  max-width:740px;
  margin-top:10px;
  color:#667b77;
  font-size:13.5px;
  line-height:1.55;
}

.property-page .chip{
  min-height:25px;
  padding:4px 9px;
  font-size:9.5px;
  font-weight:700;
}

.property-page .property-stats{
  gap:10px;
  margin:16px 0;
}

.property-page .property-stat{
  min-height:76px;
  padding:12px 14px;
  border-color:#e5ece9;
  border-radius:13px;
  background:#fbfdfc;
}

.property-page .property-stat strong{
  color:#173b35;
  font-size:17px;
  line-height:1.2;
  font-weight:600;
}

.property-page .property-stat.is-full strong{
  font-size:15px;
  font-weight:600;
}

.property-page .property-stat span{
  margin-top:4px;
  color:#748681;
  font-size:8.5px;
  letter-spacing:.055em;
  font-weight:700;
}

.property-page .property-stat small{
  margin-top:4px;
  color:#7b8c88;
  font-size:9px;
  font-weight:600;
}

.property-page .property-actions{
  gap:9px;
  margin-top:16px;
}

.property-page .property-actions .btn,
.property-page .nav .btn{
  min-height:39px;
  padding:8px 14px;
  border-radius:10px;
  font-size:12px;
  font-weight:700;
}

.property-page .hero-photo,
.property-page .hero-photo img{
  min-height:250px;
  height:250px;
  border-radius:18px;
}

.property-page .hero-photo{
  box-shadow:0 14px 34px rgba(21,52,47,.06);
}

.property-page .hero-photo .photo-fallback{
  min-height:250px;
  height:250px;
  padding:28px;
  color:#267267;
  font-size:13px;
  line-height:1.55;
  font-weight:600;
}

/* Softer typography on property cards as well */
.property-card h3{
  margin-top:7px;
  color:#17352f;
  font-size:17px;
  line-height:1.32;
  letter-spacing:-.012em;
  font-weight:600;
}

.property-card .btn{
  font-weight:700;
}

.section-head h2{
  color:#17352f;
  font-weight:650;
  letter-spacing:-.018em;
}

@media(max-width:980px){
  .property-page .property-hero{gap:22px;align-items:start}
  .property-page .property-summary h1{font-size:clamp(29px,5vw,37px)}
}

@media(max-width:680px){
  .property-page .property-top{padding:19px 0 14px}
  .property-page .property-summary h1{
    margin-top:6px;
    font-size:clamp(27px,8.2vw,34px);
    line-height:1.13;
    letter-spacing:-.022em;
  }
  .property-page .property-address{font-size:12.5px}
  .property-page .property-stats{margin:14px 0}
  .property-page .property-stat{min-height:70px;padding:11px 12px}
  .property-page .hero-photo,
  .property-page .hero-photo img,
  .property-page .hero-photo .photo-fallback{min-height:205px;height:205px}
}

/* PUBLIC UI V5.7 — compact property catalogue inspired by marketplace browsing */
.catalog-intro{
  padding:34px 0 28px;
  background:#fff;
  border-bottom:1px solid #e7eeeb;
}

.catalog-intro-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
}

.catalog-intro h1{
  max-width:720px;
  margin:7px 0 8px;
  color:#17352f;
  font-size:clamp(27px,3.2vw,39px);
  line-height:1.12;
  letter-spacing:-.028em;
  font-weight:620;
}

.catalog-intro p{
  max-width:720px;
  margin:0;
  color:#677b77;
  font-size:13.5px;
  line-height:1.6;
}

.catalog-summary{
  display:flex;
  flex:0 0 auto;
  gap:24px;
  padding:12px 16px;
  border:1px solid #e1eae7;
  border-radius:13px;
  background:#f8fbfa;
}

.catalog-summary div{
  min-width:78px;
}

.catalog-summary div+div{
  padding-left:20px;
  border-left:1px solid #dce7e4;
}

.catalog-summary strong{
  display:block;
  color:#145f55;
  font-size:20px;
  line-height:1;
  font-weight:650;
}

.catalog-summary span{
  display:block;
  margin-top:5px;
  color:#748681;
  font-size:9.5px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.045em;
}

.catalog-section{
  padding:22px 0 50px;
  background:#fbfcfb;
}

.catalog-location-bar{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:42px;
  margin-bottom:16px;
  padding-bottom:13px;
  border-bottom:1px solid #e5ece9;
}

.catalog-location-label{
  flex:0 0 auto;
  color:#6d807c;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.catalog-location-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.location-chip{
  min-height:28px;
  padding:5px 10px;
  border:1px solid #dbe7e3;
  border-radius:999px;
  background:#fff;
  color:#526964;
  font-size:10px;
  font-weight:750;
  cursor:pointer;
}

.location-chip:hover,
.location-chip.is-active{
  border-color:#98c6bd;
  background:#edf7f4;
  color:#075e54;
}

.catalog-layout{
  display:grid;
  grid-template-columns:238px minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.catalog-sidebar{
  position:relative;
}

.filter-card{
  position:sticky;
  top:82px;
  padding:16px;
  border:1px solid #dfe9e6;
  border-radius:13px;
  background:#fff;
  box-shadow:0 7px 22px rgba(19,51,45,.045);
}

.filter-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.filter-card-head h2{
  margin:2px 0 0;
  color:#17352f;
  font-size:17px;
  font-weight:650;
}

.filter-eyebrow{
  color:#83938f;
  font-size:8.5px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.filter-reset{
  padding:2px 0;
  border:0;
  background:transparent;
  color:#157568;
  font-size:10px;
  font-weight:800;
  cursor:pointer;
}

.filter-group{
  padding:12px 0;
  border-top:1px solid #edf2f0;
}

.filter-label{
  display:block;
  margin-bottom:7px;
  color:#38534e;
  font-size:10.5px;
  font-weight:800;
}

.filter-control{
  width:100%;
  min-height:37px;
  border:1px solid #dce7e4;
  border-radius:8px;
  padding:0 10px;
  background:#fff;
  color:#17352f;
  outline:none;
  font-size:11px;
}

.filter-control:focus{
  border-color:#75afa5;
  box-shadow:0 0 0 3px rgba(7,94,84,.07);
}

.filter-checks{
  display:grid;
  gap:7px;
}

.filter-check{
  display:flex;
  align-items:center;
  gap:8px;
  color:#526964;
  font-size:11px;
  cursor:pointer;
}

.filter-check input{
  width:14px;
  height:14px;
  margin:0;
  accent-color:#075e54;
}

.filter-empty{
  color:#83938f;
  font-size:10px;
}

.filter-visit{
  width:100%;
  min-height:38px;
  margin-top:5px;
  font-size:11px;
}

.catalog-results{
  min-width:0;
}

.catalog-results-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:13px;
}

.catalog-results-head h2{
  margin:3px 0 2px;
  color:#17352f;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.018em;
  font-weight:620;
}

.catalog-count{
  color:#7b8c88;
  font-size:10.5px;
  font-weight:650;
}

.catalog-sort{
  display:flex;
  align-items:center;
  gap:7px;
  color:#748681;
  font-size:10px;
  font-weight:700;
}

.catalog-sort select{
  min-height:34px;
  border:1px solid #dce7e4;
  border-radius:8px;
  padding:0 28px 0 9px;
  background:#fff;
  color:#38534e;
  font-size:10.5px;
  outline:none;
}

.property-grid.property-grid-catalog{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
}

.property-card-catalog{
  border-radius:12px;
  box-shadow:0 5px 18px rgba(19,51,45,.05);
}

.property-card-catalog:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(19,51,45,.075);
}

.property-card-catalog .property-card-media{
  aspect-ratio:16/9;
}

.property-card-catalog .card-badge{
  top:9px;
  left:9px;
  padding:4px 7px;
  background:rgba(255,255,255,.94);
  font-size:8.5px;
  font-weight:800;
}

.property-card-catalog .property-card-body{
  padding:13px 14px 14px;
}

.property-card-catalog .property-card-topline{
  min-height:17px;
}

.property-card-catalog .property-location,
.property-card-catalog .property-capacity{
  color:#7b8c88;
  font-size:9px;
  font-weight:700;
}

.property-card-catalog h3{
  margin:4px 0 0;
  color:#17352f;
  font-size:14.5px;
  line-height:1.3;
  letter-spacing:-.008em;
  font-weight:600;
}

.property-card-catalog .property-audiences{
  margin-top:7px;
  gap:5px;
}

.property-card-catalog .chip{
  min-height:22px;
  padding:3px 7px;
  font-size:8.5px;
  font-weight:700;
}

.property-card-catalog .sharing-list{
  gap:5px;
  margin-top:9px;
}

.property-card-catalog .sharing-pill{
  min-height:25px;
  padding:4px 7px;
  border-radius:7px;
  font-size:8px;
  font-weight:700;
}

.property-card-catalog .sharing-pill b{
  font-size:8.5px;
  font-weight:750;
}

.catalog-card-meta{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-top:11px;
  padding-top:10px;
  border-top:1px solid #edf2f0;
}

.catalog-price span{
  display:block;
  color:#83938f;
  font-size:8px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.045em;
}

.catalog-price strong{
  display:block;
  margin-top:2px;
  color:#075e54;
  font-size:15px;
  line-height:1.1;
  font-weight:650;
}

.catalog-availability{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  max-width:150px;
  text-align:right;
  color:#9a681c;
}

.catalog-availability.is-available{
  color:#247246;
}

.catalog-availability .availability-dot{
  width:6px;
  height:6px;
  flex:0 0 6px;
  box-shadow:none;
  background:#d97706;
}

.catalog-availability.is-available .availability-dot{
  background:#22a45a;
}

.catalog-availability strong{
  font-size:9px;
  line-height:1.25;
  font-weight:800;
}

.property-card-catalog .property-card-actions{
  gap:7px;
  margin-top:11px;
}

.property-card-catalog .property-card-actions .btn{
  min-height:35px;
  padding:7px 9px;
  border-radius:8px;
  font-size:9.5px;
  font-weight:750;
}

.property-grid-catalog .photo-fallback{
  padding:18px;
  font-size:11px;
  font-weight:700;
}

.property-grid-catalog .property-loading{
  grid-column:1/-1;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.property-grid-catalog .property-loading div{
  min-height:330px;
  border-radius:12px;
}

.catalog-support{
  padding:38px 0;
  background:#eef6f3;
}

.catalog-support-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.catalog-support h2{
  max-width:680px;
  margin:5px 0 7px;
  color:#17352f;
  font-size:23px;
  line-height:1.2;
  font-weight:620;
}

.catalog-support p{
  max-width:690px;
  margin:0;
  color:#667b77;
  font-size:12px;
}

.catalog-support-actions{
  display:flex;
  flex:0 0 auto;
  gap:8px;
}

@media(max-width:980px){
  .catalog-layout{grid-template-columns:1fr}
  .filter-card{
    position:static;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1.2fr auto;
    align-items:end;
    gap:10px;
    padding:12px;
  }
  .filter-card-head{grid-column:1/-1;margin-bottom:0}
  .filter-group{padding:0;border-top:0}
  .filter-visit{margin-top:0;white-space:nowrap}
}

@media(max-width:760px){
  .catalog-intro{padding:26px 0 22px}
  .catalog-intro-row{align-items:flex-start;flex-direction:column;gap:15px}
  .catalog-intro h1{font-size:30px}
  .catalog-summary{width:100%;justify-content:flex-start}
  .catalog-location-bar{align-items:flex-start;flex-direction:column;gap:8px}
  .filter-card{grid-template-columns:1fr 1fr}
  .filter-card-head{grid-column:1/-1}
  .filter-checks{grid-template-columns:repeat(2,minmax(0,1fr))}
  .filter-visit{align-self:end}
  .property-grid.property-grid-catalog{grid-template-columns:1fr 1fr}
  .catalog-support-grid{align-items:flex-start;flex-direction:column}
}

@media(max-width:620px){
  .catalog-section{padding-top:16px}
  .catalog-location-bar{margin-bottom:12px}
  .catalog-layout{gap:15px}
  .filter-card{grid-template-columns:1fr}
  .filter-card-head{grid-column:auto}
  .filter-checks{grid-template-columns:repeat(2,minmax(0,1fr))}
  .catalog-results-head{align-items:flex-start;flex-direction:column}
  .catalog-sort{width:100%;justify-content:space-between}
  .catalog-sort select{flex:1;max-width:220px}
  .property-grid.property-grid-catalog{grid-template-columns:1fr}
  .property-card-catalog .property-card-media{aspect-ratio:16/9}
  .catalog-support-actions{width:100%}
  .catalog-support-actions .btn{flex:1}
}

@media(max-width:420px){
  .catalog-intro h1{font-size:27px}
  .catalog-summary{gap:15px;padding:11px 13px}
  .catalog-summary div+div{padding-left:15px}
  .filter-checks{grid-template-columns:1fr 1fr}
  .catalog-card-meta{align-items:flex-start;flex-direction:column}
  .catalog-availability{justify-content:flex-start;max-width:none;text-align:left}
  .property-card-catalog .property-card-actions{grid-template-columns:1fr 1fr}
}

/* PUBLIC UI V5.8 — mobile-first simplified catalogue */
.mobile-catalog-tools,
.mobile-filter-close,
.mobile-filter-done,
.mobile-filter-backdrop{display:none}
.filter-head-actions{display:flex;align-items:center;gap:10px}

@media(max-width:760px){
  body.filters-open{overflow:hidden}

  .site-header .header-row{min-height:58px}
  .site-header .brand img{width:36px;height:36px}
  .site-header .brand-copy{font-size:14px}
  .site-header .brand-copy small{display:none}
  .site-header .nav .btn{min-height:34px;padding:7px 11px;font-size:10px}

  .catalog-intro{padding:18px 0 14px}
  .catalog-intro-row{gap:10px}
  .catalog-intro .kicker{display:none}
  .catalog-intro h1{margin:0;font-size:24px;line-height:1.16;font-weight:580;letter-spacing:-.02em}
  .catalog-intro p{max-width:520px;font-size:11.5px;line-height:1.45}
  .catalog-summary{width:auto;gap:12px;padding:7px 10px;border-radius:10px;background:#f7faf9}
  .catalog-summary div{min-width:62px}
  .catalog-summary div+div{padding-left:12px}
  .catalog-summary strong{font-size:16px}
  .catalog-summary span{margin-top:3px;font-size:7.5px}

  .catalog-section{padding:12px 0 34px}
  .catalog-location-bar{display:block;min-height:0;margin:0 -16px 10px;padding:0 16px 9px;border-bottom:1px solid #e8eeec;overflow:hidden}
  .catalog-location-label{display:none}
  .catalog-location-chips{display:flex;flex-wrap:nowrap;gap:7px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
  .catalog-location-chips::-webkit-scrollbar{display:none}
  .location-chip{flex:0 0 auto;min-height:30px;padding:5px 11px;font-size:9.5px}

  .mobile-catalog-tools{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;margin-bottom:12px}
  .mobile-search-box{display:flex;align-items:center;gap:7px;min-height:38px;padding:0 10px;border:1px solid #dce7e4;border-radius:10px;background:#fff;color:#70827d}
  .mobile-search-box span{font-size:17px;line-height:1}
  .mobile-search-box input{width:100%;min-width:0;border:0;outline:0;background:transparent;color:#17352f;font-size:11px}
  .mobile-filter-toggle{min-width:82px;min-height:38px;padding:0 12px;border:1px solid #cfe0dc;border-radius:10px;background:#fff;color:#075e54;font-size:10px;font-weight:800}

  .catalog-layout{display:block}
  .catalog-sidebar{position:fixed;z-index:120;left:0;right:0;bottom:0;max-height:82vh;transform:translateY(105%);transition:transform .22s ease;pointer-events:none}
  .catalog-sidebar.is-open{transform:translateY(0);pointer-events:auto}
  .filter-card{position:static;display:block;max-height:82vh;overflow:auto;padding:16px 16px calc(16px + env(safe-area-inset-bottom));border:0;border-radius:18px 18px 0 0;box-shadow:0 -16px 45px rgba(17,45,39,.16)}
  .filter-card-head{display:flex;margin-bottom:6px}
  .filter-card-head h2{font-size:18px}
  .filter-eyebrow{display:none}
  .mobile-filter-close{display:grid;place-items:center;width:30px;height:30px;padding:0;border:1px solid #dce7e4;border-radius:50%;background:#fff;color:#526964;font-size:20px;line-height:1}
  .filter-group{padding:11px 0;border-top:1px solid #edf2f0}
  .filter-group:first-of-type{display:none}
  .filter-label{margin-bottom:6px;font-size:10px}
  .filter-control{min-height:40px;font-size:11px}
  .filter-checks{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .filter-check{min-height:34px;padding:7px 9px;border:1px solid #e2ebe8;border-radius:9px;background:#fbfcfb;font-size:10px}
  .filter-visit{display:none}
  .mobile-filter-done{display:flex;width:100%;min-height:42px;margin-top:9px}
  .mobile-filter-backdrop{position:fixed;z-index:110;inset:0;display:block;border:0;background:rgba(16,33,29,.32);opacity:0;pointer-events:none;transition:opacity .2s ease}
  .mobile-filter-backdrop.is-open{opacity:1;pointer-events:auto}

  .catalog-results-head{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:10px;margin-bottom:9px}
  .catalog-results-head .kicker{display:none}
  .catalog-results-head h2{margin:0;font-size:17px;font-weight:600}
  .catalog-count{display:block;margin-top:2px;font-size:9px}
  .catalog-sort{gap:0;font-size:0}
  .catalog-sort span{display:none}
  .catalog-sort select{min-height:34px;max-width:126px;padding:0 25px 0 8px;font-size:9px}

  .property-grid.property-grid-catalog{grid-template-columns:1fr;gap:11px}
  .property-card-catalog{border-radius:12px;box-shadow:0 3px 14px rgba(19,51,45,.045)}
  .property-card-catalog:hover{transform:none}
  .property-card-catalog .property-card-media{aspect-ratio:16/10}
  .property-card-catalog .property-card-body{padding:11px 12px 12px}
  .property-card-catalog .property-location{font-size:8.5px}
  .property-card-catalog .property-capacity{display:none}
  .property-card-catalog h3{margin-top:3px;font-size:15px;line-height:1.28;font-weight:570}
  .property-card-catalog .property-audiences{margin-top:6px}
  .property-card-catalog .chip{min-height:20px;padding:2px 6px;font-size:8px}
  .property-card-catalog .sharing-list{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:5px;margin-top:7px;padding-bottom:1px;scrollbar-width:none}
  .property-card-catalog .sharing-list::-webkit-scrollbar{display:none}
  .property-card-catalog .sharing-pill{flex:0 0 auto;min-height:23px;padding:3px 6px;font-size:7.8px}
  .property-card-catalog .sharing-pill:nth-child(n+3){display:none}

  .catalog-card-meta{align-items:center;flex-direction:row;gap:8px;margin-top:8px;padding-top:8px}
  .catalog-price span{font-size:7.3px}
  .catalog-price strong{font-size:14px}
  .catalog-availability{justify-content:flex-end;max-width:145px;text-align:right}
  .catalog-availability strong{font-size:8.5px}

  .property-card-catalog .property-card-actions{display:grid;grid-template-columns:1fr;margin-top:9px}
  .property-card-catalog .property-card-actions .btn{min-height:36px;font-size:9.5px}
  .property-card-catalog .property-card-actions .btn-soft{display:none}

  .property-grid-catalog .property-loading{grid-template-columns:1fr;gap:11px}
  .property-grid-catalog .property-loading div{min-height:300px}

  .catalog-support{padding:26px 0}
  .catalog-support h2{font-size:19px}
  .catalog-support p{font-size:11px;line-height:1.5}
  .catalog-support-actions{gap:7px}
  .catalog-support-actions .btn{min-height:38px;font-size:9.5px}
}

@media(max-width:420px){
  .catalog-intro h1{font-size:22px}
  .catalog-intro p{font-size:11px}
  .catalog-summary{gap:10px;padding:6px 9px}
  .catalog-summary div+div{padding-left:10px}
  .catalog-card-meta{align-items:center;flex-direction:row}
  .catalog-availability{justify-content:flex-end;max-width:138px;text-align:right}
  .property-card-catalog .property-card-actions{grid-template-columns:1fr}
}

/* PUBLIC UI V5.9 — compact mobile catalogue polish */
@media(max-width:760px){
  .wrap{width:min(1160px,calc(100% - 24px))}

  .site-header .header-row{min-height:50px}
  .site-header .brand{gap:7px}
  .site-header .brand img{width:30px;height:30px}
  .site-header .brand-copy{font-size:12.5px;font-weight:760}
  .site-header .nav .btn{display:none}

  .catalog-intro{padding:13px 0 10px}
  .catalog-intro-row{gap:7px}
  .catalog-intro h1{font-size:20px;line-height:1.18;font-weight:560;letter-spacing:-.018em}
  .catalog-intro p{margin-top:3px;font-size:10.5px;line-height:1.4}
  .catalog-summary{gap:11px;padding:2px 0;border:0;border-radius:0;background:transparent}
  .catalog-summary div{min-width:0}
  .catalog-summary div+div{padding-left:11px}
  .catalog-summary strong{display:inline;font-size:14px;font-weight:680}
  .catalog-summary span{display:inline;margin:0 0 0 4px;font-size:8px;letter-spacing:0;text-transform:none}

  .catalog-section{padding:8px 0 26px}
  .mobile-catalog-tools{gap:6px;margin-bottom:8px}
  .mobile-search-box{min-height:35px;padding:0 9px;border-radius:9px}
  .mobile-search-box span{font-size:15px}
  .mobile-search-box input{font-size:10.5px}
  .mobile-filter-toggle{min-width:68px;min-height:35px;padding:0 9px;border-radius:9px;font-size:9.5px}

  .catalog-location-bar{margin:0 -12px 7px;padding:0 12px 7px}
  .catalog-location-chips{gap:5px}
  .location-chip{min-height:27px;padding:4px 9px;font-size:9px}

  .catalog-results-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px}
  .catalog-results-head h2{font-size:15px;font-weight:590}
  .catalog-count{margin-top:0;font-size:8.5px;font-weight:650}
  .catalog-sort{display:none}

  .property-grid.property-grid-catalog{gap:9px}
  .property-card-catalog{overflow:hidden;border-radius:11px}
  .property-card-catalog .property-card-media{height:150px;aspect-ratio:auto}
  .property-card-catalog .property-card-media img{width:100%;height:100%;object-fit:cover}
  .property-grid-catalog .photo-fallback{height:100%;min-height:0;padding:14px;font-size:10px}
  .property-card-catalog .card-badge{top:7px;left:7px;padding:3px 6px;font-size:7.5px}

  .property-card-catalog .property-card-body{padding:9px 10px 10px}
  .property-card-catalog .property-card-topline{min-height:0}
  .property-card-catalog .property-location{font-size:8px}
  .property-card-catalog h3{margin-top:2px;font-size:13.5px;line-height:1.25;font-weight:560}
  .property-card-catalog .property-audiences{margin-top:5px}
  .property-card-catalog .chip{min-height:18px;padding:2px 6px;font-size:7.5px}

  /* Full sharing-price detail belongs on the property page on phones. */
  .property-card-catalog .sharing-list{display:none}

  .catalog-card-meta{gap:7px;margin-top:6px;padding-top:7px}
  .catalog-price span{font-size:6.8px}
  .catalog-price strong{font-size:13px;font-weight:650}
  .catalog-availability{gap:4px;max-width:132px}
  .catalog-availability .availability-dot{width:5px;height:5px;flex-basis:5px}
  .catalog-availability strong{font-size:8px;font-weight:760}

  .property-card-catalog .property-card-actions{margin-top:7px}
  .property-card-catalog .property-card-actions .btn{min-height:33px;padding:6px 9px;border-radius:8px;font-size:9px}

  .catalog-support{padding:22px 0}
}

@media(max-width:420px){
  .catalog-intro h1{font-size:19px}
  .property-card-catalog .property-card-media{height:140px}
  .property-card-catalog h3{font-size:13px}
}


/* PUBLIC UI V5.10 — mobile direct contact actions */
.mobile-card-actions{display:none}

@media(max-width:680px){
  .desktop-card-actions{display:none!important}

  .mobile-card-actions{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:5px;
    margin-top:7px;
  }

  .mobile-card-actions .btn{
    min-width:0;
    min-height:32px;
    padding:6px 5px;
    border-radius:8px;
    font-size:8.7px;
    line-height:1.1;
    white-space:nowrap;
  }

  .btn-call{
    background:#fff;
    border-color:#bfcfcb;
    color:#173b34;
  }

  .btn-whatsapp{
    background:#edf8f3;
    border-color:#b9dfd2;
    color:#086b55;
  }

  .mobile-actions{
    display:flex;
    align-items:center;
    gap:6px;
    padding:7px max(10px,env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left));
    box-shadow:0 -4px 18px rgba(16,45,38,.08);
  }

  .mobile-actions .btn{
    flex:1 1 0;
    min-width:0;
    min-height:38px;
    padding:7px 5px;
    border-radius:9px;
    font-size:9.2px;
    white-space:nowrap;
  }

  body.property-page{padding-bottom:64px}
}

@media(max-width:380px){
  .mobile-card-actions .btn{font-size:8.1px}
  .mobile-actions .btn{font-size:8.6px}
}


/* PUBLIC UI V5.11 - location-driven results + scrollable sharing prices */
.property-card-catalog .sharing-scroll{
  position:relative;
  width:100%;
  min-width:0;
  margin-top:9px;
}
.property-card-catalog .sharing-list{
  display:flex;
  flex-wrap:nowrap;
  gap:6px;
  width:100%;
  margin-top:0;
  padding:0 0 5px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x proximity;
  overscroll-behavior-inline:contain;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:#bfd2cd transparent;
}
.property-card-catalog .sharing-list::-webkit-scrollbar{height:4px}
.property-card-catalog .sharing-list::-webkit-scrollbar-track{background:transparent}
.property-card-catalog .sharing-list::-webkit-scrollbar-thumb{background:#bfd2cd;border-radius:999px}
.property-card-catalog .sharing-pill{
  flex:0 0 auto;
  scroll-snap-align:start;
  white-space:nowrap;
}
.property-card-catalog .sharing-pill span{white-space:nowrap}
.property-card-catalog .sharing-pill b{display:inline-flex;align-items:baseline;gap:2px}
.property-card-catalog .sharing-pill small{font-size:.78em;font-weight:650;color:#71847f}

@media(max-width:760px){
  .property-card-catalog .sharing-scroll{margin-top:6px}
  .property-card-catalog .sharing-list{
    gap:5px;
    margin:0;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .property-card-catalog .sharing-list::-webkit-scrollbar{display:none}
  .property-card-catalog .sharing-pill{display:inline-flex;min-height:24px;padding:3px 7px;font-size:7.9px}
  .property-card-catalog .sharing-pill:nth-child(n){display:inline-flex}
  .property-card-catalog .sharing-pill b{font-size:8.4px}
  .property-card-catalog .sharing-pill small{font-size:6.8px}
}

/* PUBLIC UI V5.12 — ultra-compact mobile catalogue */
@media(max-width:760px){
  /* Keep the browse header useful, but stop it consuming the first screen. */
  .catalog-intro{padding:9px 0 7px}
  .catalog-intro-row{gap:4px}
  .catalog-intro h1{font-size:18px;line-height:1.12;font-weight:560}
  .catalog-intro p{display:none}
  .catalog-summary{gap:9px;padding:0}
  .catalog-summary div+div{padding-left:9px}
  .catalog-summary strong{font-size:12.5px}
  .catalog-summary span{margin-left:3px;font-size:7.5px}

  .catalog-section{padding-top:6px}
  .mobile-catalog-tools{margin-bottom:6px}
  .catalog-location-bar{margin-bottom:5px;padding-bottom:5px}
  .catalog-results-head{margin-bottom:5px}

  /* A catalogue card should be a quick decision surface, not a detail page. */
  .property-grid.property-grid-catalog{gap:8px}
  .property-card-catalog{border-radius:10px}
  .property-card-catalog .property-card-media{height:108px;aspect-ratio:auto}
  .property-card-catalog .property-card-media img{height:108px;object-fit:cover}
  .property-grid-catalog .photo-fallback{
    height:108px;
    min-height:108px;
    padding:10px;
    font-size:9px;
    letter-spacing:.02em;
  }
  .property-card-catalog .card-badge{top:6px;left:6px;padding:2px 6px;font-size:7px}

  .property-card-catalog .property-card-body{padding:7px 9px 8px}
  .property-card-catalog .property-card-topline{display:block;min-height:0}
  .property-card-catalog .property-location{font-size:7.5px;line-height:1.15}
  .property-card-catalog h3{margin-top:1px;font-size:12.5px;line-height:1.2;font-weight:560}
  .property-card-catalog .property-audiences{display:none}

  .property-card-catalog .sharing-scroll{margin-top:5px}
  .property-card-catalog .sharing-list{gap:4px;padding-bottom:1px}
  .property-card-catalog .sharing-pill{
    min-height:21px;
    padding:2px 6px;
    border-radius:6px;
    font-size:7.3px;
  }
  .property-card-catalog .sharing-pill b{font-size:7.8px}
  .property-card-catalog .sharing-pill small{font-size:6.2px}

  .catalog-card-meta{gap:6px;margin-top:5px;padding-top:5px}
  .catalog-price span{font-size:6.4px}
  .catalog-price strong{font-size:12px;line-height:1}
  .catalog-availability{gap:4px;max-width:128px}
  .catalog-availability strong{font-size:7.5px;line-height:1.15}

  .mobile-card-actions{gap:4px;margin-top:6px}
  .mobile-card-actions .btn{
    min-height:29px;
    padding:5px 4px;
    border-radius:7px;
    font-size:8px;
  }

  .property-grid-catalog .property-loading div{min-height:220px}
}

@media(max-width:420px){
  .catalog-intro h1{font-size:17px}
  .property-card-catalog .property-card-media,
  .property-card-catalog .property-card-media img,
  .property-grid-catalog .photo-fallback{height:96px;min-height:96px}
  .property-card-catalog h3{font-size:12px}
  .property-card-catalog .sharing-pill{font-size:7px}
  .catalog-price strong{font-size:11.5px}
}

/* PUBLIC UI V5.14 — direct property actions + simplified results header */
.catalog-results-head-minimal{
  justify-content:flex-end;
  min-height:0;
  margin-bottom:10px;
}

.property-contact-actions{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:6px;
}
.property-contact-actions .btn{
  min-width:0;
  white-space:nowrap;
}
.btn-map{
  background:#f5f8f7;
  border-color:#cbd7d4;
  color:#244b43;
}
.btn-map:hover{background:#eaf2f0}

@media(max-width:760px){
  .catalog-results-head-minimal{display:none}
  .mobile-card-actions.property-contact-actions{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:4px;
  }
  .mobile-card-actions.property-contact-actions .btn{
    min-height:29px;
    padding:5px 3px;
    font-size:7.6px;
  }
}

@media(max-width:360px){
  .mobile-card-actions.property-contact-actions .btn{font-size:7.2px}
}

/* PUBLIC UI V5.15 — compact enquiry/contact actions + adaptive property imagery */
.property-contact-actions-v515{
  display:grid;
  grid-template-columns:minmax(58px,.9fr) minmax(68px,1fr) minmax(58px,.85fr) 38px minmax(88px,1.2fr);
  gap:5px;
  align-items:stretch;
}
.property-contact-actions-v515 .btn{
  min-width:0;
  min-height:34px;
  padding:6px 8px;
  border-radius:8px;
  font-size:9px;
  font-weight:700;
  white-space:nowrap;
}
.property-contact-actions-v515 .btn-enquire{
  background:#f4f8f7;
  border-color:#c8d8d4;
  color:#174d43;
}
.property-contact-actions-v515 .btn-enquire:hover{background:#eaf2f0}
.property-contact-actions-v515 .btn-with-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.property-contact-actions-v515 .btn svg{
  flex:0 0 auto;
  width:13px;
  height:13px;
}
.property-contact-actions-v515 .btn-icon-only{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  padding:0;
  border-radius:9px;
}
.property-contact-actions-v515 .btn-icon-only svg{width:14px;height:14px}

/* Keep listing cards compact while respecting source image orientation. */
.property-card-media.image-portrait img{
  object-fit:contain;
  object-position:center;
  background:#f2f6f5;
}
.property-card-media.image-landscape img,
.property-card-media.image-square img{
  object-fit:cover;
  object-position:center;
}

/* Detail images preserve their intrinsic ratio instead of being stretched to a fixed height. */
.property-page .hero-photo{
  min-height:220px!important;
  height:auto!important;
  max-height:560px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#f3f7f6;
}
.property-page .hero-photo img.adaptive-detail-image{
  display:block;
  min-height:0!important;
  height:auto!important;
  max-width:100%;
  max-height:560px;
  margin:auto;
  object-fit:contain;
  object-position:center;
}
.property-page .hero-photo.image-landscape img.adaptive-detail-image,
.property-page .hero-photo.image-square img.adaptive-detail-image{
  width:100%;
}
.property-page .hero-photo.image-portrait img.adaptive-detail-image{
  width:auto;
}
.property-page .hero-photo.image-lowres{
  padding:10px;
}
.property-page .hero-photo.image-lowres img.adaptive-detail-image{
  width:auto;
}

@media(max-width:760px){
  .mobile-card-actions.property-contact-actions-v515{
    display:grid;
    grid-template-columns:minmax(48px,.9fr) minmax(56px,1fr) minmax(48px,.82fr) 30px minmax(72px,1.15fr);
    gap:3px;
    margin-top:6px;
  }
  .mobile-card-actions.property-contact-actions-v515 .btn{
    min-height:28px;
    padding:4px 5px;
    border-radius:7px;
    font-size:7.5px;
  }
  .mobile-card-actions.property-contact-actions-v515 .btn svg{width:10px;height:10px}
  .mobile-card-actions.property-contact-actions-v515 .btn-icon-only{
    width:30px;
    padding:0;
  }
  .mobile-card-actions.property-contact-actions-v515 .btn-icon-only svg{width:12px;height:12px}

  .property-page .hero-photo{
    min-height:160px!important;
    max-height:420px;
  }
  .property-page .hero-photo img.adaptive-detail-image{
    max-height:420px;
  }
}

@media(max-width:380px){
  .mobile-card-actions.property-contact-actions-v515{
    grid-template-columns:minmax(44px,.85fr) minmax(52px,.95fr) minmax(42px,.75fr) 28px minmax(67px,1.1fr);
  }
  .mobile-card-actions.property-contact-actions-v515 .btn{font-size:7px;padding-inline:3px}
  .mobile-card-actions.property-contact-actions-v515 .btn-icon-only{width:28px}
}

/* PUBLIC UI V5.18 — direct property catalogue, no filter sidebar */
.home-catalogue .header-row{min-height:58px}
.home-catalogue .brand img{width:38px;height:38px}
.home-catalogue .catalog-intro-direct{
  padding:16px 0 12px;
  background:#fff;
}
.home-catalogue .catalog-intro-row-direct{display:block}
.home-catalogue .catalog-intro-direct h1{
  margin:0;
  max-width:none;
  font-size:30px;
  line-height:1.08;
  font-weight:560;
  letter-spacing:-.025em;
}
.home-catalogue .catalog-intro-direct p{
  margin:4px 0 0;
  max-width:none;
  font-size:12px;
  line-height:1.4;
}
.home-catalogue .catalog-section-direct{
  padding:10px 0 38px;
}
.home-catalogue .catalog-location-bar-direct{
  min-height:34px;
  margin:0 0 10px;
  padding:0 0 9px;
}
.home-catalogue .catalog-location-bar-direct .catalog-location-label{
  font-size:9px;
}
.home-catalogue .catalog-results-direct{width:100%}
.home-catalogue .property-grid.property-grid-direct{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.home-catalogue .property-grid-direct .property-loading{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.home-catalogue .property-grid-direct .property-loading div{min-height:270px}

@media(max-width:980px){
  .home-catalogue .property-grid.property-grid-direct{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .home-catalogue .property-grid-direct .property-loading{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:680px){
  .home-catalogue .header-row{min-height:52px}
  .home-catalogue .brand{gap:7px;font-size:13px}
  .home-catalogue .brand img{width:33px;height:33px}
  .home-catalogue .brand-copy small{display:none}
  .home-catalogue .nav .btn-primary{display:none}

  .home-catalogue .catalog-intro-direct{padding:9px 0 7px}
  .home-catalogue .catalog-intro-direct h1{font-size:19px;line-height:1.1}
  .home-catalogue .catalog-intro-direct p{margin-top:2px;font-size:9.5px;line-height:1.35}

  .home-catalogue .catalog-section-direct{padding:5px 0 26px}
  .home-catalogue .catalog-location-bar-direct{
    margin:0 -12px 6px;
    padding:0 12px 6px;
    border-bottom:1px solid #e8eeec;
    overflow:hidden;
  }
  .home-catalogue .catalog-location-bar-direct .catalog-location-label{display:none}
  .home-catalogue .catalog-location-chips{
    display:flex;
    flex-wrap:nowrap;
    gap:5px;
    overflow-x:auto;
    padding-bottom:1px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .home-catalogue .catalog-location-chips::-webkit-scrollbar{display:none}
  .home-catalogue .location-chip{flex:0 0 auto;min-height:27px;padding:4px 9px;font-size:8.5px}

  .home-catalogue .property-grid.property-grid-direct{grid-template-columns:1fr;gap:8px}
  .home-catalogue .property-grid-direct .property-loading{grid-template-columns:1fr;gap:8px}
  .home-catalogue .property-grid-direct .property-loading div{min-height:215px}
}

/* PUBLIC UI V5.23 — clear property-detail hero and adaptive gallery */
.property-page .property-top{
  padding:18px 0 16px;
}
.property-page .breadcrumb{
  margin-bottom:10px;
  font-size:10.5px;
}
.property-page .property-hero{
  grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  gap:28px;
  align-items:start;
}
.property-page .property-summary{
  padding-top:4px;
}
.property-page .property-summary h1{
  max-width:720px;
  margin:5px 0 7px;
  font-size:clamp(29px,2.7vw,38px);
  line-height:1.12;
  font-weight:600;
}
.property-page .property-address{
  margin-top:8px;
  font-size:13px;
  line-height:1.45;
}
.property-page .property-facts{
  display:flex;
  flex-wrap:wrap;
  gap:7px 16px;
  margin:14px 0 11px;
  padding:10px 0;
  border-top:1px solid #e7eeeb;
  border-bottom:1px solid #e7eeeb;
}
.property-page .property-fact{
  display:flex;
  align-items:baseline;
  gap:5px;
  min-width:0;
  color:#173b35;
}
.property-page .property-fact + .property-fact{
  padding-left:16px;
  border-left:1px solid #e3ebe8;
}
.property-page .property-fact span{
  color:#758681;
  font-size:9px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.045em;
}
.property-page .property-fact strong{
  font-size:13.5px;
  line-height:1.2;
  font-weight:650;
}
.property-page .property-fact small{
  margin-left:2px;
  color:#7b8c88;
  font-size:9.5px;
  font-weight:600;
}
.property-page .property-fact-status.is-available strong{color:#087a62}
.property-page .property-fact-status.is-full strong{color:#965b13}
.property-page .property-room-options{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 2px;
}
.property-page .property-room-options-label{
  color:#758681;
  font-size:9px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.045em;
}
.property-page .property-room-options .chips{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin:0;
}
.property-page .property-room-options .chip{
  min-height:23px;
  padding:3px 8px;
  font-size:8.5px;
}
.property-page .property-actions{
  gap:7px;
  margin-top:13px;
}
.property-page .property-actions .btn{
  min-height:36px;
  padding:7px 12px;
  font-size:11px;
}
.property-page .hero-photo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:0;
  height:auto;
  max-height:420px;
  overflow:hidden;
  border-radius:16px;
  background:#f3f7f5;
  box-shadow:0 10px 26px rgba(21,52,47,.055);
}
.property-page .hero-photo img,
.property-page .hero-photo img.adaptive-detail-image{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  border-radius:15px;
}
.property-page .hero-photo .photo-fallback{
  width:100%;
  min-height:260px;
  height:260px;
}
.property-page .gallery-strip{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:6px;
  margin-top:7px;
}
.property-page .gallery-thumb{
  border-radius:8px;
}

@media(max-width:980px){
  .property-page .property-hero{
    grid-template-columns:1fr 1fr;
    gap:18px;
    align-items:start;
  }
  .property-page .hero-photo,
  .property-page .hero-photo img,
  .property-page .hero-photo img.adaptive-detail-image{max-height:360px}
}

@media(max-width:680px){
  .property-page .property-top{padding:12px 0 11px}
  .property-page .breadcrumb{margin-bottom:7px}
  .property-page .property-hero{
    grid-template-columns:1fr;
    gap:13px;
  }
  .property-page .property-summary{padding-top:0}
  .property-page .property-summary h1{
    margin:4px 0 6px;
    font-size:clamp(25px,7.2vw,31px);
  }
  .property-page .property-address{font-size:11.5px;line-height:1.4}
  .property-page .property-facts{
    gap:6px 10px;
    margin:10px 0 8px;
    padding:8px 0;
  }
  .property-page .property-fact + .property-fact{
    padding-left:10px;
  }
  .property-page .property-fact span{font-size:7.5px}
  .property-page .property-fact strong{font-size:11.5px}
  .property-page .property-fact small{font-size:8px}
  .property-page .property-room-options-label{font-size:7.5px}
  .property-page .property-room-options .chip{font-size:7.8px;min-height:21px;padding:3px 7px}
  .property-page .property-actions{margin-top:10px;gap:6px}
  .property-page .property-actions .btn{min-height:34px;padding:6px 10px;font-size:10px}
  .property-page .hero-photo,
  .property-page .hero-photo img,
  .property-page .hero-photo img.adaptive-detail-image{max-height:310px}
  .property-page .hero-photo .photo-fallback{min-height:190px;height:190px}
  .property-page .gallery-strip{gap:5px;margin-top:6px}
}

/* =========================================================
   PUBLIC UI V6 — consolidated final public-site presentation
   ========================================================= */

/* Compact SEO/location strip */
.home-catalogue .catalog-intro-direct{
  padding:10px 0 8px;
  border-bottom:1px solid #e7eeeb;
}
.home-catalogue .seo-home-strip{
  display:grid;
  grid-template-columns:auto minmax(260px,1fr) auto;
  align-items:center;
  gap:14px;
}
.home-catalogue .seo-home-title{
  display:flex;
  align-items:baseline;
  gap:8px;
  white-space:nowrap;
}
.home-catalogue .seo-home-kicker{
  color:#0a6d60;
  font-size:8px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.home-catalogue .catalog-intro-direct h1{
  margin:0;
  font-size:21px;
  line-height:1.1;
  font-weight:610;
  letter-spacing:-.018em;
}
.home-catalogue .catalog-intro-direct p{
  margin:0;
  color:#657a75;
  font-size:10px;
  line-height:1.35;
}
.home-catalogue .catalog-location-bar-direct{
  display:flex;
  align-items:center;
  gap:7px;
  min-height:0;
  margin:0;
  padding:0;
  border:0;
}
.home-catalogue .catalog-location-bar-direct .catalog-location-label{display:none}
.home-catalogue .catalog-location-chips{display:flex;gap:5px;flex-wrap:nowrap}
.home-catalogue .location-chip{
  min-height:28px;
  padding:4px 9px;
  border-radius:999px;
  font-size:8.5px;
  white-space:nowrap;
}
.home-catalogue .catalog-section-direct{padding:11px 0 34px}

/* Catalogue cards */
.home-catalogue .property-grid.property-grid-direct{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.property-card-catalog{
  overflow:hidden;
  border:1px solid #dce7e4;
  border-radius:14px;
  background:#fff;
  box-shadow:0 7px 22px rgba(19,51,45,.045);
}
.property-card-catalog .property-card-media{
  position:relative;
  display:block;
  height:190px;
  overflow:hidden;
  background:#edf6f3;
}
.property-card-catalog .property-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.property-card-catalog .photo-fallback{
  width:100%;
  height:100%;
  min-height:0;
  display:grid;
  place-items:center;
  padding:14px;
  color:#087062;
  font-size:11px;
  font-weight:700;
  background:linear-gradient(135deg,#edf8f5,#dff1ec);
}
.property-card-catalog .card-badge{
  position:absolute;
  top:9px;
  left:9px;
  z-index:2;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#17433b;
  font-size:8px;
  font-weight:760;
  box-shadow:0 2px 7px rgba(18,49,43,.08);
}
.catalog-availability-pop{
  position:absolute;
  right:9px;
  bottom:9px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-height:25px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:#17433b;
  font-size:8px;
  box-shadow:0 2px 8px rgba(18,49,43,.10);
}
.catalog-availability-pop .availability-dot{
  width:6px;height:6px;border-radius:50%;background:#20a46f;
}
.catalog-availability-pop.is-full .availability-dot{background:#b7791f}
.catalog-availability-pop.is-expected .availability-dot{background:#d8902f}
.property-card-catalog .property-card-body{padding:10px 11px 11px}
.property-card-catalog .property-card-topline{min-height:0;margin:0 0 2px}
.property-card-catalog .property-location{
  color:#72837f;
  font-size:8px;
  font-weight:650;
}
.property-title-row{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
}
.property-title-row h3{
  min-width:0;
  flex:1 1 auto;
  margin:0;
  font-size:14px;
  line-height:1.24;
  font-weight:590;
}
.property-title-row h3 a{color:#143d36;text-decoration:none}
.property-audience-inline{display:flex;gap:4px;flex:0 0 auto}
.property-audience-inline .chip{
  min-height:20px;
  padding:2px 6px;
  font-size:7px;
  white-space:nowrap;
}
.property-card-catalog .sharing-scroll{margin-top:7px;overflow:hidden}
.property-card-catalog .sharing-list{
  display:flex;
  gap:5px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:0;
  margin:0;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-behavior:auto;
}
.property-card-catalog .sharing-list::-webkit-scrollbar{display:none}
.property-card-catalog .sharing-pill{
  display:inline-flex;
  align-items:center;
  gap:5px;
  flex:0 0 auto;
  min-height:24px;
  padding:3px 7px;
  border:1px solid #dbe7e4;
  border-radius:7px;
  background:#fbfdfc;
  color:#5c706b;
  font-size:7.6px;
  white-space:nowrap;
}
.property-card-catalog .sharing-pill b{color:#153f37;font-size:8.4px}
.property-card-catalog .sharing-pill small{font-size:6.7px}

/* Amenities on listing cards */
.listing-amenities{
  display:flex;
  align-items:center;
  gap:5px;
  min-width:0;
  margin-top:7px;
  overflow:hidden;
}
.listing-amenity{
  display:inline-flex;
  align-items:center;
  gap:4px;
  min-width:0;
  max-width:120px;
  padding:3px 6px;
  border-radius:7px;
  background:#f3f8f6;
  color:#31564e;
  font-size:7.2px;
  animation:v6AmenityIn .35s ease both;
  animation-delay:calc(var(--amenity-i,0) * 45ms);
}
.listing-amenity-icon{display:grid;place-items:center;flex:0 0 auto}
.listing-amenity-icon svg{width:12px;height:12px}
.listing-amenity-label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.listing-amenity-more{
  flex:0 0 auto;
  font-size:7.4px;
  font-weight:750;
  color:#0a6d60;
}
@keyframes v6AmenityIn{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}

/* One clean action row */
.property-contact-actions-v520{
  display:grid;
  grid-template-columns:minmax(48px,.9fr) minmax(58px,1fr) minmax(44px,.8fr) 34px minmax(76px,1.15fr);
  gap:4px;
  margin-top:8px;
}
.property-contact-actions-v520 .btn{
  min-width:0;
  min-height:32px;
  padding:5px 6px;
  border-radius:8px;
  font-size:8px;
  font-weight:720;
  white-space:nowrap;
}
.property-contact-actions-v520 .btn-with-icon{display:inline-flex;align-items:center;justify-content:center;gap:3px}
.property-contact-actions-v520 .btn svg{width:11px;height:11px;flex:0 0 auto}
.property-contact-actions-v520 .btn-icon-only{width:34px;padding:0;display:grid;place-items:center}

/* Property detail: gallery left, essential details right */
.property-page .property-top{padding:14px 0 14px}
.property-page .breadcrumb{margin-bottom:8px}
.property-page .property-hero-v6{
  display:grid;
  grid-template-columns:minmax(0,1.16fr) minmax(340px,.84fr);
  gap:24px;
  align-items:start;
}
.property-gallery-v6{min-width:0}
.property-page .property-gallery-stage{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:430px!important;
  min-height:430px!important;
  max-height:430px!important;
  padding:0!important;
  border:1px solid #dde7e4;
  border-radius:16px;
  overflow:hidden;
  background:#f3f7f5;
}
.property-page .property-gallery-stage img,
.property-page .property-gallery-stage img.adaptive-detail-image{
  display:block;
  width:100%!important;
  max-width:100%!important;
  height:100%!important;
  max-height:none!important;
  margin:0!important;
  object-fit:contain!important;
  object-position:center;
  border-radius:0;
}
.gallery-nav{
  position:absolute;
  top:50%;
  z-index:4;
  width:34px;
  height:34px;
  margin-top:-17px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:50%;
  background:rgba(17,54,47,.72);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(4px);
}
.gallery-prev{left:10px}
.gallery-next{right:10px}
.gallery-counter{
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:4;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(17,54,47,.78);
  color:#fff;
  font-size:8px;
  font-weight:700;
}
.gallery-thumbs-v6{
  display:flex;
  gap:6px;
  width:100%;
  margin-top:7px;
  padding-bottom:1px;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.gallery-thumbs-v6::-webkit-scrollbar{display:none}
.gallery-thumb-v6{
  flex:0 0 72px;
  width:72px;
  height:52px;
  padding:0;
  border:2px solid transparent;
  border-radius:8px;
  overflow:hidden;
  background:#eef5f3;
  cursor:pointer;
  opacity:.72;
}
.gallery-thumb-v6.is-active{border-color:#0b7566;opacity:1}
.gallery-thumb-v6 img{width:100%;height:100%;object-fit:cover}
.property-page .property-summary-v6{padding:4px 0 0}
.property-page .property-summary-v6 h1{
  margin:5px 0 7px;
  font-size:clamp(28px,2.4vw,37px);
  line-height:1.1;
  font-weight:590;
}
.property-page .property-audience-chips{margin-bottom:8px}
.property-page .property-address{margin:0 0 9px;font-size:12.5px}
.property-page .property-facts{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  margin:12px 0 10px;
  padding:0;
  border-top:1px solid #e4ece9;
  border-bottom:1px solid #e4ece9;
}
.property-page .property-fact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-height:42px;
  padding:8px 0;
}
.property-page .property-fact + .property-fact{
  padding-left:0;
  border-left:0;
  border-top:1px solid #edf2f0;
}
.property-page .property-fact strong{font-size:13px;text-align:right}
.property-page .property-room-options{align-items:flex-start;margin-top:9px}
.property-hours{
  display:grid;
  gap:4px;
  margin-top:11px;
  padding:9px 10px;
  border-radius:10px;
  background:#f2f8f6;
  color:#4c6660;
  font-size:9px;
  line-height:1.4;
}
.property-hours strong{color:#17453d;margin-right:4px}
.property-page .property-actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:12px;
}
.property-page .property-actions .btn{min-height:34px;padding:6px 10px;font-size:9.5px}

@media(hover:hover){
  .listing-amenity:hover{transform:translateY(-1px);background:#eaf5f1}
}
@media (prefers-reduced-motion: reduce){
  .listing-amenity{animation:none}
}

@media(max-width:1040px){
  .home-catalogue .seo-home-strip{grid-template-columns:1fr;gap:6px}
  .home-catalogue .seo-home-title{white-space:normal}
  .home-catalogue .catalog-location-bar-direct{overflow:hidden}
  .home-catalogue .catalog-location-chips{overflow-x:auto;scrollbar-width:none}
  .home-catalogue .catalog-location-chips::-webkit-scrollbar{display:none}
  .property-page .property-hero-v6{grid-template-columns:minmax(0,1fr) minmax(310px,.86fr);gap:18px}
  .property-page .property-gallery-stage{height:360px!important;min-height:360px!important;max-height:360px!important}
}

@media(max-width:760px){
  .home-catalogue .header-row{min-height:50px}
  .home-catalogue .catalog-intro-direct{padding:7px 0 6px}
  .home-catalogue .seo-home-strip{display:block}
  .home-catalogue .seo-home-title{display:block}
  .home-catalogue .seo-home-kicker{display:none}
  .home-catalogue .catalog-intro-direct h1{font-size:17px}
  .home-catalogue .catalog-intro-direct p{margin-top:2px;font-size:8.8px}
  .home-catalogue .catalog-location-bar-direct{margin:6px -12px 0;padding:0 12px;overflow:hidden}
  .home-catalogue .catalog-location-chips{gap:4px}
  .home-catalogue .location-chip{min-height:25px;padding:3px 8px;font-size:7.8px}
  .home-catalogue .catalog-section-direct{padding:7px 0 24px}
  .home-catalogue .property-grid.property-grid-direct{grid-template-columns:1fr;gap:8px}

  .property-card-catalog .property-card-media{height:125px}
  .property-card-catalog .property-card-body{padding:8px 9px 9px}
  .property-title-row h3{font-size:12.5px}
  .property-audience-inline .chip{font-size:6.8px;min-height:18px}
  .property-card-catalog .sharing-scroll{margin-top:5px}
  .property-card-catalog .sharing-pill{min-height:21px;padding:2px 6px;font-size:7px}
  .property-card-catalog .sharing-pill b{font-size:7.6px}
  .listing-amenities{margin-top:5px;gap:4px;overflow-x:auto;scrollbar-width:none}
  .listing-amenities::-webkit-scrollbar{display:none}
  .listing-amenity{flex:0 0 auto;max-width:96px;padding:2px 5px;font-size:6.8px}
  .listing-amenity-icon svg{width:10px;height:10px}
  .property-contact-actions-v520{
    grid-template-columns:minmax(44px,.9fr) minmax(52px,1fr) minmax(42px,.8fr) 30px minmax(68px,1.2fr);
    gap:3px;
    margin-top:6px;
  }
  .property-contact-actions-v520 .btn{min-height:28px;padding:4px 4px;font-size:7.1px;border-radius:7px}
  .property-contact-actions-v520 .btn-icon-only{width:30px}
  .property-contact-actions-v520 .btn svg{width:10px;height:10px}

  .property-page .property-top{padding:10px 0 10px}
  .property-page .property-hero-v6{grid-template-columns:1fr;gap:11px}
  .property-page .property-gallery-v6{order:1}
  .property-page .property-summary-v6{order:2;padding:0}
  .property-page .property-gallery-stage{height:255px!important;min-height:255px!important;max-height:255px!important;border-radius:12px}
  .gallery-nav{width:30px;height:30px;margin-top:-15px;font-size:20px}
  .gallery-thumb-v6{flex-basis:58px;width:58px;height:43px}
  .property-page .property-summary-v6 h1{font-size:25px}
  .property-page .property-address{font-size:10.5px}
  .property-page .property-fact{min-height:36px;padding:6px 0}
  .property-page .property-fact span{font-size:7.2px}
  .property-page .property-fact strong{font-size:10.8px}
  .property-page .property-actions .btn{min-height:32px;font-size:8.5px}
  .property-hours{font-size:8px}
}

@media(max-width:390px){
  .property-card-catalog .property-card-media{height:112px}
  .property-contact-actions-v520 .btn{font-size:6.7px;padding-inline:3px}
  .property-page .property-gallery-stage{height:225px!important;min-height:225px!important;max-height:225px!important}
}

/* PUBLIC UI V6.1 — premium property-detail refinement */
.property-page{
  background:#f8faf8;
}
.property-page .property-top{
  padding:18px 0 22px;
  background:
    radial-gradient(circle at 86% 0%,rgba(7,94,84,.055),transparent 28%),
    linear-gradient(180deg,#fff 0%,#fbfdfc 100%);
  border-bottom:1px solid #e6eeeb;
}
.property-page .breadcrumb{
  margin-bottom:10px;
  color:#6d7f7a;
  font-size:10px;
  font-weight:650;
}
.property-page .breadcrumb a{color:#466760}
.property-page .property-hero-v6{
  grid-template-columns:minmax(0,1.3fr) minmax(350px,.7fr);
  gap:16px;
  padding:14px;
  border:1px solid #e0e9e6;
  border-radius:20px;
  background:#fff;
  box-shadow:0 16px 44px rgba(25,61,53,.075);
}
.property-page .property-gallery-v6{
  min-width:0;
  align-self:start;
}
.property-page .property-gallery-stage{
  height:398px!important;
  min-height:398px!important;
  max-height:398px!important;
  border:0;
  border-radius:15px;
  background:#eef4f2;
  box-shadow:inset 0 0 0 1px rgba(17,70,60,.05);
}
.property-page .property-gallery-stage.image-landscape img,
.property-page .property-gallery-stage.image-square img{
  object-fit:cover!important;
}
.property-page .property-gallery-stage.image-portrait img{
  object-fit:contain!important;
  background:linear-gradient(145deg,#edf5f2,#f8fbfa);
}
.property-page .property-gallery-stage.image-lowres img{
  object-fit:contain!important;
}
.gallery-nav{
  width:36px;
  height:36px;
  margin-top:-18px;
  border:1px solid rgba(255,255,255,.86);
  background:rgba(12,64,55,.76);
  box-shadow:0 5px 16px rgba(0,0,0,.12);
}
.gallery-counter{
  right:12px;
  bottom:12px;
  padding:5px 9px;
  background:rgba(13,55,48,.82);
  font-size:9px;
  letter-spacing:.02em;
}
.gallery-thumbs-v6{
  gap:7px;
  margin-top:8px;
}
.gallery-thumb-v6{
  flex-basis:68px;
  width:68px;
  height:50px;
  border-radius:9px;
  opacity:.64;
  transition:opacity .18s ease,border-color .18s ease,transform .18s ease;
}
.gallery-thumb-v6:hover{opacity:.9;transform:translateY(-1px)}
.gallery-thumb-v6.is-active{opacity:1;border-color:#0a7464}

.property-page .property-summary-v61{
  min-width:0;
  padding:8px 6px 4px 8px;
}
.property-summary-heading{
  padding-bottom:11px;
  border-bottom:1px solid #e7eeec;
}
.property-eyebrow-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.property-page .property-summary-v61 h1{
  margin:6px 0 8px;
  font-size:clamp(27px,2.1vw,34px);
  line-height:1.08;
  letter-spacing:-.025em;
  font-weight:620;
  color:#123b34;
}
.property-availability-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:25px;
  padding:4px 8px;
  border-radius:999px;
  background:#eef8f4;
  color:#08725d;
  font-size:8.5px;
  font-weight:800;
  white-space:nowrap;
}
.property-availability-pill.is-full{background:#fff5e9;color:#98601d}
.availability-dot{
  width:7px;
  height:7px;
  flex:0 0 auto;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 0 3px rgba(8,114,93,.10);
}
.property-page .property-audience-chips{margin:0 0 8px}
.property-page .property-audience-chips .chip{
  min-height:23px;
  padding:3px 8px;
  font-size:8.5px;
}
.property-page .property-address{
  display:flex;
  align-items:flex-start;
  gap:7px;
  margin:0;
  color:#60746f;
  font-size:11.5px;
  line-height:1.45;
}
.address-pin{
  width:16px;
  height:16px;
  flex:0 0 auto;
  margin-top:1px;
  color:#0b7566;
}
.address-pin svg{width:100%;height:100%;display:block}

.property-quick-facts{
  display:grid;
  grid-template-columns:1.15fr .7fr 1fr;
  gap:7px;
  margin:11px 0;
}
.property-quick-fact{
  min-width:0;
  min-height:69px;
  padding:9px 10px;
  border:1px solid #e2ebe8;
  border-radius:12px;
  background:#fbfdfc;
}
.property-quick-fact span{
  display:block;
  margin-bottom:3px;
  color:#7a8d88;
  font-size:7.5px;
  font-weight:850;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.property-quick-fact strong{
  display:block;
  overflow:hidden;
  color:#123f37;
  font-size:13px;
  line-height:1.22;
  text-overflow:ellipsis;
}
.property-quick-fact:first-child strong{font-size:17px;color:#076b5c}
.property-quick-fact small{
  display:block;
  margin-top:2px;
  color:#82928e;
  font-size:7.5px;
  line-height:1.2;
}
.property-quick-fact-status.is-available{background:#f2faf7}
.property-quick-fact-status.is-full{background:#fff9f0}

.property-rate-options{
  margin-top:10px;
}
.property-rate-options-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
  color:#536d67;
  font-size:8.5px;
  font-weight:800;
}
.property-rate-options-head a{color:#087463}
.property-rate-pills{
  display:flex;
  gap:6px;
  overflow-x:auto;
  padding:1px 1px 3px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.property-rate-pills::-webkit-scrollbar{display:none}
.property-rate-pill{
  flex:0 0 auto;
  display:grid;
  gap:1px;
  min-width:110px;
  padding:7px 9px;
  border:1px solid #dfe9e6;
  border-radius:10px;
  background:#fff;
  transition:border-color .18s ease,background .18s ease;
}
.property-rate-pill:hover{border-color:#a9cec5;background:#f7fbfa}
.property-rate-pill span{color:#687c77;font-size:8px;font-weight:720}
.property-rate-pill strong{color:#12423a;font-size:11px}

.property-highlight-amenities{
  display:flex;
  gap:5px;
  margin-top:9px;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.property-highlight-amenities::-webkit-scrollbar{display:none}
.property-highlight-amenity,
.property-highlight-more{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:4px;
  min-height:26px;
  padding:4px 7px;
  border:1px solid #e0e9e6;
  border-radius:999px;
  background:#f8fbfa;
  color:#47645d;
  font-size:7.5px;
  font-weight:750;
  white-space:nowrap;
}
.property-highlight-amenity-icon{display:grid;place-items:center;color:#0b7566}
.property-highlight-amenity-icon svg{width:12px;height:12px}
.property-highlight-more{color:#087463;background:#eef8f4}
.property-summary-v61 .property-hours{
  margin-top:9px;
  padding:7px 9px;
  border:1px solid #e1ece8;
  background:#f7fbf9;
  font-size:8px;
}
.property-page .property-actions-v61{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  gap:6px;
  margin-top:10px;
}
.property-page .property-actions-v61 .btn{
  width:100%;
  min-height:34px;
  padding:6px 8px;
  border-radius:9px;
  font-size:8.8px;
}
.property-page .property-actions-v61 .action-main{grid-column:span 2}
.property-direct-note{
  margin-top:7px;
  color:#899893;
  font-size:7.5px;
  text-align:center;
}

.property-page #availability.section{padding-top:28px}
.property-page .detail-layout{gap:18px}
.property-page .content-card{
  border-radius:15px;
  box-shadow:0 6px 22px rgba(20,55,48,.035);
}
.property-page .sticky-card{
  top:82px;
  border-radius:15px;
  box-shadow:0 12px 30px rgba(20,55,48,.07);
}
.property-page .price-card{
  background:#fbfdfc;
}

@media(max-width:1040px){
  .property-page .property-hero-v6{
    grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr);
    gap:14px;
  }
  .property-page .property-gallery-stage{
    height:350px!important;
    min-height:350px!important;
    max-height:350px!important;
  }
  .property-quick-facts{grid-template-columns:1fr 1fr}
  .property-quick-fact-status{grid-column:1/-1;min-height:54px}
}

@media(max-width:760px){
  .property-page .property-top{padding:7px 0 10px}
  .property-page .breadcrumb{margin-bottom:6px;font-size:8px}
  .property-page .property-hero-v6{
    grid-template-columns:1fr;
    gap:9px;
    padding:8px;
    border-radius:14px;
    box-shadow:0 8px 24px rgba(25,61,53,.055);
  }
  .property-page .property-gallery-v6{order:1}
  .property-page .property-summary-v61{order:2;padding:2px 2px 3px}
  .property-page .property-gallery-stage{
    height:238px!important;
    min-height:238px!important;
    max-height:238px!important;
    border-radius:11px;
  }
  .gallery-nav{width:30px;height:30px;margin-top:-15px}
  .gallery-thumbs-v6{gap:5px;margin-top:5px}
  .gallery-thumb-v6{flex-basis:54px;width:54px;height:40px;border-radius:7px}
  .property-eyebrow-row{align-items:flex-start}
  .property-availability-pill{min-height:22px;padding:3px 7px;font-size:7.5px}
  .property-page .property-summary-v61 h1{margin:5px 0 6px;font-size:22px;line-height:1.1}
  .property-page .property-audience-chips{margin-bottom:6px}
  .property-page .property-audience-chips .chip{min-height:20px;padding:2px 7px;font-size:7px}
  .property-page .property-address{font-size:9px;gap:5px}
  .address-pin{width:13px;height:13px}
  .property-quick-facts{grid-template-columns:1fr 1fr 1fr;gap:5px;margin:8px 0}
  .property-quick-fact{min-height:57px;padding:7px 7px;border-radius:9px}
  .property-quick-fact-status{grid-column:auto}
  .property-quick-fact span{font-size:6.2px}
  .property-quick-fact strong{font-size:9px}
  .property-quick-fact:first-child strong{font-size:12px}
  .property-quick-fact small{font-size:6.3px}
  .property-rate-options{margin-top:8px}
  .property-rate-options-head{font-size:7.2px;margin-bottom:4px}
  .property-rate-pill{min-width:96px;padding:5px 7px;border-radius:8px}
  .property-rate-pill span{font-size:7px}
  .property-rate-pill strong{font-size:9.5px}
  .property-highlight-amenities{margin-top:7px;gap:4px}
  .property-highlight-amenity,.property-highlight-more{min-height:23px;padding:3px 6px;font-size:6.8px}
  .property-highlight-amenity-icon svg{width:10px;height:10px}
  .property-page .property-actions-v61{grid-template-columns:1.2fr 1fr 1fr;gap:4px;margin-top:8px}
  .property-page .property-actions-v61 .btn{min-height:30px;padding:4px 5px;font-size:7.5px;border-radius:8px}
  .property-direct-note{font-size:6.5px;margin-top:5px}
  .property-page #availability.section{padding-top:16px}
}

@media(max-width:390px){
  .property-page .property-gallery-stage{
    height:214px!important;
    min-height:214px!important;
    max-height:214px!important;
  }
  .property-page .property-summary-v61 h1{font-size:20px}
  .property-quick-facts{grid-template-columns:1fr 1fr}
  .property-quick-fact-status{grid-column:1/-1;min-height:43px}
  .property-page .property-actions-v61{grid-template-columns:1fr 1fr}
  .property-page .property-actions-v61 .action-main{grid-column:1/-1}
}

/* =========================================================
   PUBLIC UI V6.2 — premium hospitality colour system
   ========================================================= */
:root{
  --ink:#18332e;
  --brand:#0b6b5d;
  --brand-dark:#075247;
  --soft:#edf6f2;
  --cream:#fbfaf6;
  --card:#ffffff;
  --muted:#6b7d78;
  --line:#dce7e2;
  --success:#237a5b;
  --warning:#a86e22;
  --accent:#b79255;
  --accent-dark:#8e6e3b;
  --accent-soft:#f7f1e6;
  --sage-soft:#f1f7f4;
  --shadow:0 12px 34px rgba(24,51,46,.075);
}

body{background:var(--cream);color:var(--ink)}
.site-header{
  background:rgba(253,252,248,.95);
  border-bottom-color:#e5ebe7;
}
.brand-copy small{color:#74827e}

.btn{
  border-color:#d7e3de;
  background:#fff;
  color:#24443d;
}
.btn:hover{border-color:#afc9c1;background:#f8fbf9}
.btn-primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 5px 14px rgba(11,107,93,.14);
}
.btn-primary:hover{background:var(--brand-dark);border-color:var(--brand-dark)}
.btn-soft{
  background:var(--accent-soft);
  border-color:#eadfc9;
  color:#765b31;
}

.kicker,.seo-home-kicker{color:var(--brand)}
.chip{
  background:#edf6f2;
  color:#176457;
}

/* Homepage cards */
.property-card,
.property-card-catalog{
  background:#fff;
  border-color:#dfe8e4;
  box-shadow:0 8px 26px rgba(26,53,47,.06);
}
.property-card:hover,
.property-card-catalog:hover{
  border-color:#bdd2ca;
  box-shadow:0 16px 36px rgba(26,53,47,.10);
}
.property-card-media,
.property-card-catalog .property-card-media{
  background:linear-gradient(135deg,#eef6f2,#e5f0ec);
}
.property-card-catalog .photo-fallback{
  color:#17685a;
  background:
    radial-gradient(circle at 78% 18%,rgba(183,146,85,.12),transparent 30%),
    linear-gradient(135deg,#f4f8f5,#e6f1ed);
}
.property-card-catalog .card-badge{
  background:rgba(253,252,248,.96);
  color:#31524a;
  border:1px solid rgba(220,231,226,.8);
}
.catalog-availability-pop{
  background:rgba(253,252,248,.96);
  color:#274a42;
  border:1px solid rgba(220,231,226,.8);
}
.catalog-availability-pop .availability-dot{background:#2b8a67}
.catalog-availability-pop.is-full .availability-dot{background:#b77a2d}
.catalog-availability-pop.is-expected .availability-dot{background:#c89542}
.property-title-row h3 a{color:#183b34}
.property-title-row h3 a:hover{color:var(--brand)}
.property-card-catalog .sharing-pill{
  border-color:#e0e8e4;
  background:#fbfcfa;
  color:#62736f;
}
.property-card-catalog .sharing-pill b{color:#26463f}
.listing-amenity{
  background:#f0f6f3;
  color:#3f6259;
}
.listing-amenity-icon{color:var(--brand)}
.listing-amenity-more{color:var(--accent-dark)}
.location-chip{
  background:#fff;
  border-color:#dbe6e1;
  color:#405f57;
}
.location-chip:hover,
.location-chip.is-active{
  background:#eaf5f0;
  border-color:#9bc5b9;
  color:#0b6658;
}

/* Property detail */
.property-page{background:#fbfaf7}
.property-page .property-hero-v6{
  background:#fff;
  border:1px solid #e2e9e5;
  box-shadow:0 12px 34px rgba(26,53,47,.07);
}
.property-page .property-gallery-stage{
  background:#f1f4f1;
  border-color:#dce5e0;
}
.gallery-nav,
.gallery-counter{background:rgba(24,51,46,.78)}
.gallery-thumb-v6{background:#eef3f0}
.gallery-thumb-v6.is-active{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(183,146,85,.18);
}
.property-page .property-summary-v61 h1,
.property-page .property-summary-v6 h1{color:#173a33}
.property-page .property-address{color:#687b76}
.address-pin{color:var(--brand)}

.property-availability-pill{
  background:#eef7f2;
  color:#216a54;
  border:1px solid #d9ebe3;
}
.property-availability-pill.is-full{
  background:#fff7eb;
  color:#946126;
  border-color:#f1dfc5;
}
.availability-dot{box-shadow:none}

.property-quick-fact{
  background:#fcfcfa;
  border-color:#e3eae6;
}
.property-quick-fact:first-child{
  background:var(--accent-soft);
  border-color:#eadfc9;
}
.property-quick-fact:first-child strong{color:#775a30}
.property-quick-fact-status.is-available{
  background:#eef7f2;
  border-color:#d9ebe3;
}
.property-quick-fact-status.is-full{
  background:#fff8ed;
  border-color:#f1e0c6;
}

.property-rate-pill{
  background:#fff;
  border-color:#e0e8e4;
}
.property-rate-pill:hover{
  background:#f8faf8;
  border-color:#afc9c1;
}
.property-rate-pill strong{color:#23473f}

.property-highlight-amenity,
.property-highlight-more{
  border-color:#dde8e3;
  background:#f2f7f4;
  color:#46655d;
}
.property-highlight-amenity-icon{color:var(--brand)}
.property-highlight-more{
  background:var(--accent-soft);
  border-color:#eadfc9;
  color:#7a6036;
}

.property-page .property-hours{
  background:#f2f7f4;
  border-color:#dde8e3;
  color:#536d66;
}
.property-page .property-hours strong{color:#244c43}

.property-page .content-card,
.property-page .sticky-card{
  background:#fff;
  border-color:#e1e9e5;
}
.property-page .price-card{background:#fffdf8}
.property-page .price-card strong,
.property-page .price-card .price{color:#7b5e34}

.property-direct-note{color:#8a9793}

/* Refined focus states */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(183,146,85,.28);
  outline-offset:2px;
}

/* =========================================================
   PUBLIC UI V6.3 — clean auto gallery + single pricing block
   ========================================================= */
.property-page .property-hero-v6{
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:20px;
  border-radius:24px;
  overflow:visible;
}
.property-page .property-gallery-v6{min-width:0}
.property-page .property-gallery-stage{
  width:100%;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  aspect-ratio:16 / 10;
  padding:0!important;
  overflow:hidden;
  border:0!important;
  border-radius:22px!important;
  background:#e9efec;
  box-shadow:inset 0 0 0 1px rgba(26,53,47,.06);
}
.property-page .property-gallery-stage img,
.property-page .property-gallery-stage img.adaptive-detail-image,
.property-page .property-gallery-stage.image-landscape img,
.property-page .property-gallery-stage.image-square img,
.property-page .property-gallery-stage.image-portrait img,
.property-page .property-gallery-stage.image-lowres img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:none!important;
  margin:0!important;
  object-fit:cover!important;
  object-position:center!important;
  border-radius:inherit!important;
  transform:scale(1.001);
  transition:opacity .24s ease,transform .7s ease;
}
.property-page .property-gallery-stage img.is-changing{opacity:.18;transform:scale(1.014)}
.gallery-nav,.gallery-prev,.gallery-next,.gallery-counter,.gallery-thumbs-v6{display:none!important}
.gallery-view-all{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 13px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;
  background:rgba(24,42,38,.82);
  color:#fff;
  box-shadow:0 7px 20px rgba(0,0,0,.16);
  backdrop-filter:blur(8px);
  font-size:10px;
  font-weight:760;
  letter-spacing:.01em;
  cursor:pointer;
}
.gallery-view-all:hover{background:#162f2a;transform:translateY(-1px)}

/* All-photo viewer */
.photo-viewer-open{overflow:hidden}
.property-photo-viewer[hidden]{display:none!important}
.property-photo-viewer{
  position:fixed;
  inset:0;
  z-index:10000;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(12,24,22,.78);
  backdrop-filter:blur(8px);
}
.property-photo-viewer-panel{
  width:min(1120px,96vw);
  max-height:92vh;
  overflow:auto;
  border-radius:22px;
  background:#fbfaf6;
  box-shadow:0 28px 90px rgba(0,0,0,.32);
}
.property-photo-viewer-head{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-bottom:1px solid #e5e8e4;
  background:rgba(251,250,246,.96);
  backdrop-filter:blur(10px);
}
.property-photo-viewer-head>div{display:flex;flex-direction:column;gap:2px}
.property-photo-viewer-head strong{font-size:14px;color:#18332e}
.property-photo-viewer-head span{font-size:9px;color:#73807c}
.property-photo-viewer-close{
  width:34px;
  height:34px;
  border:1px solid #dce5e1;
  border-radius:50%;
  background:#fff;
  color:#27453e;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.property-photo-viewer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:12px;
}
.property-photo-viewer-grid figure{
  margin:0;
  overflow:hidden;
  border-radius:16px;
  background:#eef2ef;
}
.property-photo-viewer-grid img{
  display:block;
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:cover;
}

/* One clear sharing/pricing block only */
.property-page .property-rate-options{
  margin:13px 0 10px;
  padding:12px;
  border:1px solid #dfe7e3;
  border-radius:15px;
  background:#f8faf8;
}
.property-page .property-rate-options-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.property-page .property-rate-options-head span{
  font-size:10px;
  font-weight:780;
  color:#284a42;
}
.property-page .property-rate-options-head small{
  font-size:8px;
  color:#7d8c87;
}
.property-rate-pills-v63{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px!important;
}
.property-rate-pill-v63{
  display:grid!important;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:2px 8px;
  min-height:52px;
  padding:8px 9px!important;
  border-radius:11px!important;
  text-decoration:none;
}
.property-rate-pill-v63>span{font-size:9px;font-weight:700;color:#536964}
.property-rate-pill-v63>strong{font-size:13px!important;color:#173f37!important}
.property-rate-pill-v63>small{
  grid-column:1/-1;
  font-size:7.5px;
  font-weight:650;
  color:#73837e;
}
.property-page .property-detail-content{padding-top:2px}
.enquiry-helper{
  margin:8px 0 13px;
  padding:9px 10px;
  border-radius:10px;
  background:#f4f7f5;
  color:#657772;
  font-size:9px;
  line-height:1.45;
}

/* Weekly food menu: warm hospitality accent, hover/focus on desktop, tap on mobile */
.weekly-food-menu{position:relative;display:inline-flex;margin:4px 0 10px;z-index:12}
.weekly-food-menu-trigger{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:34px;
  padding:7px 10px;
  border:1px solid #e5c98f;
  border-radius:999px;
  background:#fff5df;
  color:#724d1c;
  font-size:9px;
  font-weight:760;
  cursor:pointer;
}
.weekly-food-menu-icon{display:grid;place-items:center;width:17px;height:17px;color:#aa6a20}
.weekly-food-menu-icon svg{width:15px;height:15px}
.weekly-food-menu-popover{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  z-index:30;
  width:min(390px,82vw);
  max-height:360px;
  overflow:auto;
  padding:12px;
  border:1px solid #e8cf9e;
  border-radius:14px;
  background:#fffaf0;
  color:#5f4522;
  box-shadow:0 18px 48px rgba(72,48,17,.17);
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s;
}
.weekly-food-menu:hover .weekly-food-menu-popover,
.weekly-food-menu:focus-within .weekly-food-menu-popover,
.weekly-food-menu.is-open .weekly-food-menu-popover{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.weekly-food-menu-popover>strong{display:block;margin-bottom:8px;font-size:11px;color:#6d491b}
.weekly-food-menu-days{display:grid;gap:7px}
.weekly-food-day{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:8px;
  padding:7px 8px;
  border-radius:10px;
  background:#fff3d9;
}
.weekly-food-day>span{font-size:8px;font-weight:800;color:#9a6120}
.weekly-food-day>div{display:grid;gap:2px}
.weekly-food-day small{font-size:8px;line-height:1.35;color:#6c5739}
.weekly-food-day b{color:#664315}

/* Action colours: clearer hierarchy */
.property-page .property-actions-v61 .btn-primary{background:#173f37;border-color:#173f37}
.property-page .property-actions-v61 .btn-soft{background:#fff1d7;border-color:#e7c98f;color:#704b1a}
.property-page .property-actions-v61 .btn-call{background:#edf3f7;border-color:#cfdae2;color:#2d5065}

@media(max-width:900px){
  .property-page .property-hero-v6{grid-template-columns:1fr;gap:12px;border-radius:18px;padding:10px}
  .property-page .property-gallery-stage{
    aspect-ratio:4 / 3;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    border-radius:17px!important;
  }
  .gallery-view-all{right:10px;bottom:10px;min-height:32px;padding:6px 10px;font-size:8px}
  .property-rate-pills-v63{grid-template-columns:1fr 1fr}
  .property-photo-viewer{padding:8px}
  .property-photo-viewer-panel{width:100%;max-height:96vh;border-radius:16px}
  .property-photo-viewer-grid{grid-template-columns:1fr;gap:8px;padding:8px}
  .property-photo-viewer-grid figure{border-radius:12px}
  .weekly-food-menu-popover{position:fixed;left:12px;right:12px;top:auto;bottom:76px;width:auto;max-height:56vh}
}

@media(max-width:520px){
  .property-rate-pills-v63{grid-template-columns:1fr}
  .property-page .property-gallery-stage{aspect-ratio:1.18 / 1}
  .property-page .property-summary-v61{padding:4px 2px 2px}
  .weekly-food-menu{margin-bottom:7px}
}

@media(prefers-reduced-motion:reduce){
  .property-page .property-gallery-stage img,
  .gallery-view-all,
  .weekly-food-menu-popover{transition:none!important}
}

/* =========================================================
   V6.4 — compact premium location card
   ========================================================= */
.location-section{
  padding:20px 22px;
  overflow:hidden;
}

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

.location-section-head h2{
  margin:2px 0 0;
  font-size:clamp(20px,2vw,27px);
  line-height:1.12;
  letter-spacing:-.025em;
  font-weight:650;
  color:#173c35;
}

.section-kicker{
  margin:0;
  color:#987344;
  font-size:10px;
  line-height:1;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.location-directions{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:34px;
  padding:7px 11px;
  border:1px solid rgba(25,92,76,.18);
  border-radius:999px;
  background:#f3f7f4;
  color:#165c4c;
  font-size:11px;
  font-weight:800;
  text-decoration:none;
  transition:transform .16s ease,background .16s ease,border-color .16s ease;
}

.location-directions:hover{
  transform:translateY(-1px);
  background:#eaf3ee;
  border-color:rgba(25,92,76,.3);
}

.location-address-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border:1px solid rgba(27,78,65,.1);
  border-radius:13px;
  background:linear-gradient(135deg,#fbfcf9 0%,#f6f8f3 100%);
}

.location-address-row p{
  margin:0;
  color:#52635e;
  font-size:13px;
  line-height:1.55;
}

.location-pin{
  flex:0 0 auto;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#e9f1ec;
  color:#17614f;
}

.location-pin svg{
  width:15px;
  height:15px;
}

.nearby-compact{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin-top:13px;
}

.nearby-label{
  flex:0 0 auto;
  padding-top:7px;
  color:#6d7774;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.location-section .nearby-list{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.location-section .nearby-item{
  padding:6px 9px;
  border:1px solid rgba(25,92,76,.09);
  border-radius:999px;
  background:#f4f7f4;
  color:#455a53;
  font-size:10.5px;
  line-height:1.2;
  font-weight:700;
}

@media (max-width:720px){
  .location-section{padding:16px}
  .location-section-head{align-items:flex-end;margin-bottom:10px}
  .location-section-head h2{font-size:21px}
  .location-directions{min-height:32px;padding:6px 10px;font-size:10.5px}
  .location-address-row{padding:10px 11px;border-radius:11px}
  .location-address-row p{font-size:12px;line-height:1.45}
  .location-pin{width:26px;height:26px;border-radius:8px}
  .nearby-compact{display:block;margin-top:11px}
  .nearby-label{display:block;padding:0;margin-bottom:7px}
  .location-section .nearby-list{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}
  .location-section .nearby-list::-webkit-scrollbar{display:none}
  .location-section .nearby-item{flex:0 0 auto}
}

/* PUBLIC UI V6.5 — popup enquiry, contact dock, weekly-menu reliability */
.property-interest-compact{align-self:start}
.property-interest-card{
  border:1px solid #dce6df;
  border-radius:18px;
  background:linear-gradient(145deg,#fffdf8,#f4f8f5);
  padding:16px;
  box-shadow:0 12px 30px rgba(24,63,55,.07);
  display:grid;
  gap:13px;
}
.property-interest-copy{display:grid;gap:4px}
.property-interest-copy strong{font-size:16px;line-height:1.25;color:#173f37;font-weight:650}
.property-interest-copy small{font-size:11px;line-height:1.45;color:#66746f}
.property-interest-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}
.property-interest-actions .btn{min-height:36px;padding:7px 8px;font-size:10px;border-radius:10px}

.enquiry-modal[hidden]{display:none!important}
.enquiry-modal{
  position:fixed;inset:0;z-index:10050;
  background:rgba(12,28,24,.56);
  display:grid;place-items:center;
  padding:18px;
  backdrop-filter:blur(5px);
}
.enquiry-modal-panel{
  width:min(620px,100%);max-height:min(88vh,760px);overflow:auto;
  background:#fffdf8;border:1px solid #e1e8e3;border-radius:22px;
  box-shadow:0 28px 80px rgba(9,35,28,.25);padding:18px;
}
.enquiry-modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:12px}
.enquiry-modal-head h2{font-size:20px;line-height:1.2;margin:3px 0 0;font-weight:650;color:#173f37}
.enquiry-modal-close{
  width:34px;height:34px;border:1px solid #d8e2dc;border-radius:50%;background:#fff;color:#29483f;
  font-size:24px;line-height:1;display:grid;place-items:center;cursor:pointer;flex:0 0 auto;
}
.enquiry-form-modal .form-grid{gap:9px}
.enquiry-form-modal .field label{font-size:10px}
.enquiry-form-modal input,.enquiry-form-modal select,.enquiry-form-modal textarea{min-height:38px;font-size:12px;border-radius:10px}
.enquiry-form-modal textarea{min-height:72px}
.enquiry-modal-actions{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px;margin-top:12px}
.enquiry-modal-actions .btn{min-height:38px;font-size:10px;padding:7px 8px;border-radius:10px}
body.enquiry-modal-open{overflow:hidden}

.desktop-contact-dock{
  position:fixed;right:18px;bottom:18px;z-index:990;
  display:flex;align-items:center;gap:6px;padding:6px;
  border:1px solid rgba(216,226,220,.94);border-radius:999px;
  background:rgba(255,253,248,.96);box-shadow:0 14px 38px rgba(20,55,46,.16);backdrop-filter:blur(10px)
}
.contact-dock-action{
  min-height:34px;padding:7px 11px;border-radius:999px;border:0;text-decoration:none;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;font:600 10px/1 system-ui,-apple-system,"Segoe UI",sans-serif;
}
.contact-dock-call{background:#edf3f7;color:#2d5065}
.contact-dock-whatsapp{background:#e8f7ed;color:#17683b}
.contact-dock-enquire{background:#173f37;color:white}

.weekly-food-menu-trigger{box-shadow:0 7px 18px rgba(121,82,26,.08)}
.weekly-food-menu-popover{border-color:#e8d2a7;background:#fffaf0}
.weekly-food-day{border-bottom:1px solid #f0e2c7;padding-bottom:6px}
.weekly-food-day:last-child{border-bottom:0;padding-bottom:0}

@media (max-width:760px){
  .desktop-contact-dock{display:none}
  .property-interest-card{padding:12px;border-radius:14px}
  .property-interest-copy strong{font-size:14px}
  .property-interest-actions .btn{min-height:32px;font-size:9px;padding:5px}
  .enquiry-modal{align-items:end;padding:0}
  .enquiry-modal-panel{width:100%;max-height:88vh;border-radius:22px 22px 0 0;padding:15px 14px 18px}
  .enquiry-modal-head h2{font-size:17px}
  .enquiry-modal-actions{grid-template-columns:1fr 1fr}
  .enquiry-modal-actions .btn{font-size:9px;min-height:34px}
}


/* =========================================================
   PUBLIC UI V6.6 — mobile-first availability + cool pearl background
   ========================================================= */
.property-page{
  background:#f2f5f6!important;
  color:#19352f;
}
.property-page .property-top{
  background:linear-gradient(180deg,#eef3f4 0%,#f5f7f7 100%);
}
.property-page .property-hero-v6{
  background:#ffffff;
  border-color:#dce6e5;
  box-shadow:0 12px 34px rgba(32,67,62,.07);
}
.property-page .property-detail-content{
  background:#f2f5f6;
}
.property-page .section-alt{
  background:#eaf0f1;
}
.property-page .content-card,
.property-page .property-interest-card,
.property-page .enquiry-modal-panel{
  background:#ffffff;
}
.property-page #availability{
  scroll-margin-top:86px;
}
.weekly-food-menu-empty-copy{
  margin:0;
  color:#6b5b42;
  font-size:10px;
  line-height:1.5;
}

@media (max-width:760px){
  .property-page{padding-bottom:64px}
  .property-page .site-header .header-row{min-height:54px}
  .property-page .brand img{width:34px;height:34px}
  .property-page .brand-copy{font-size:12px}
  .property-page .brand-copy small{font-size:6.8px}
  .property-page .nav .btn-primary{min-height:30px;padding:6px 10px;font-size:8.5px}

  .property-page .property-top{padding:4px 0 8px}
  .property-page .breadcrumb{display:none}
  .property-page .property-hero-v6{
    gap:8px;
    padding:7px;
    border-radius:15px;
  }
  .property-page .property-gallery-stage{
    aspect-ratio:16/10!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    border-radius:13px!important;
  }
  .gallery-view-all{
    right:8px;
    bottom:8px;
    min-height:29px;
    padding:5px 9px;
    font-size:7.5px;
    border-radius:999px;
  }
  .property-page .property-summary-v61{padding:3px 2px 2px}
  .property-page .property-summary-v61 h1{
    margin:4px 0 5px;
    font-size:21px;
    line-height:1.08;
    letter-spacing:-.02em;
  }
  .property-page .property-address{
    font-size:9.5px;
    line-height:1.35;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .property-page .property-audience-chips{margin-bottom:5px}

  /* Make #availability compact and swipeable instead of stacking tall cards. */
  .property-rate-options{margin-top:7px}
  .property-rate-options-head{margin-bottom:4px}
  .property-rate-pills-v63{
    display:flex!important;
    grid-template-columns:none!important;
    gap:6px!important;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    padding:1px 1px 3px;
  }
  .property-rate-pills-v63::-webkit-scrollbar{display:none}
  .property-rate-pill-v63{
    flex:0 0 142px;
    min-height:48px;
    padding:7px 8px!important;
    scroll-snap-align:start;
  }
  .property-rate-pill-v63>span{font-size:8px}
  .property-rate-pill-v63>strong{font-size:11.5px!important}
  .property-rate-pill-v63>small{font-size:7px}

  .property-highlight-amenities{margin-top:6px}
  .property-highlight-amenity,.property-highlight-more{
    min-height:22px;
    padding:3px 6px;
    font-size:6.8px;
  }

  /* Mobile already has persistent Call / WhatsApp / Enquire actions. */
  .property-page .property-actions-v61,
  .property-page .property-direct-note{display:none!important}

  .weekly-food-menu{margin:6px 0 3px}
  .weekly-food-menu-trigger{
    min-height:31px;
    padding:6px 9px;
    font-size:8px;
  }
  .weekly-food-menu-popover{
    left:10px;
    right:10px;
    bottom:66px;
    max-height:52vh;
    border-radius:14px;
  }

  .property-page .property-detail-content{padding-top:10px}
  .property-page .detail-layout{gap:10px}
  .property-page .content-card{padding:14px;border-radius:13px}
  .location-section{padding:14px!important}
  .property-interest-card{padding:11px}
  .property-interest-actions{grid-template-columns:repeat(3,1fr)}

  .mobile-actions{
    min-height:58px;
    gap:6px;
    background:rgba(248,250,250,.97);
    border-top-color:#d6e1e1;
    box-shadow:0 -8px 26px rgba(27,58,54,.10);
  }
  .mobile-actions .btn{
    min-height:38px;
    border-radius:10px;
    font-size:9px;
  }
}

@media (max-width:390px){
  .property-page .property-summary-v61 h1{font-size:19px}
  .property-rate-pill-v63{flex-basis:132px}
  .property-page .property-gallery-stage{aspect-ratio:16/10!important}
}


/* =========================================================
   PUBLIC UI V6.7 — consolidated mobile cleanup
   Fixes: address-pin sizing, duplicate contact block, compact
   hours/about/location, related-property mobile cards.
   ========================================================= */

/* Hard guard against any inherited/global SVG sizing. */
.property-page .property-address .address-pin{
  display:inline-grid!important;
  place-items:center!important;
  width:15px!important;
  height:15px!important;
  min-width:15px!important;
  min-height:15px!important;
  max-width:15px!important;
  max-height:15px!important;
  flex:0 0 15px!important;
  overflow:hidden!important;
  border-radius:0!important;
  background:transparent!important;
  margin-top:1px!important;
}
.property-page .property-address .address-pin svg{
  display:block!important;
  width:15px!important;
  height:15px!important;
  min-width:15px!important;
  min-height:15px!important;
  max-width:15px!important;
  max-height:15px!important;
}
.property-page .location-address-row .location-pin,
.property-page .location-address-row .location-pin svg{
  max-width:28px!important;
  max-height:28px!important;
}
.property-page .location-address-row .location-pin svg{
  width:15px!important;
  height:15px!important;
}

/* Related stays: cleaner cards on property page. */
.property-page #relatedProperties .property-card-body{padding:11px}
.property-page #relatedProperties .property-card-body h3{
  margin:0 0 3px;
  font-size:14px;
  line-height:1.2;
  font-weight:650;
}
.property-page #relatedProperties .property-location{font-size:10px}
.property-page #relatedProperties .card-stats{margin:8px 0}
.property-page #relatedProperties .card-stat strong{font-size:12px}
.property-page #relatedProperties .card-stat span{font-size:8px}
.property-page #relatedProperties .btn{min-height:34px;font-size:9px}

@media (max-width:760px){
  /* Persistent bottom actions make the second contact card redundant. */
  .property-page .property-interest-compact{display:none!important}
  .property-page .detail-layout{grid-template-columns:1fr!important}

  /* Hours should be a single information row, not another large card. */
  .property-page .property-summary-v61 .property-hours{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:6px!important;
    min-height:28px!important;
    margin-top:6px!important;
    padding:5px 8px!important;
    border-radius:9px!important;
    font-size:8px!important;
    line-height:1.2!important;
  }
  .property-page .property-summary-v61 .property-hours strong{
    margin:0!important;
    font-size:8px!important;
  }

  /* Keep reading hierarchy compact on a phone. */
  .property-page .content-card{
    padding:12px!important;
    border-radius:13px!important;
  }
  .property-page .content-card h2{
    margin:0 0 8px!important;
    font-size:21px!important;
    line-height:1.13!important;
    letter-spacing:-.02em!important;
    font-weight:650!important;
  }
  .property-page .content-card .muted{
    margin:0!important;
    font-size:13px!important;
    line-height:1.55!important;
  }
  .property-page .property-detail-content .detail-layout>div{
    display:grid;
    gap:9px;
  }

  /* Location card remains useful without oversized icon/text. */
  .property-page .location-section{padding:12px!important}
  .property-page .location-section-head{margin-bottom:8px!important}
  .property-page .location-section-head h2{font-size:19px!important}
  .property-page .location-address-row{gap:8px!important;padding:9px 10px!important}
  .property-page .location-address-row p{font-size:11px!important;line-height:1.4!important}
  .property-page .location-address-row .location-pin{
    width:24px!important;height:24px!important;min-width:24px!important;min-height:24px!important;
  }
  .property-page .location-address-row .location-pin svg{width:13px!important;height:13px!important}

  /* Food menu works as a true mobile sheet when opened. */
  .property-page .weekly-food-menu-popover{
    position:fixed!important;
    left:8px!important;
    right:8px!important;
    top:auto!important;
    bottom:64px!important;
    width:auto!important;
    max-height:58vh!important;
    overflow:auto!important;
    padding:12px!important;
    border-radius:16px!important;
    box-shadow:0 18px 54px rgba(42,48,39,.22)!important;
    z-index:1005!important;
  }
  .property-page .weekly-food-menu-days{gap:5px!important}
  .property-page .weekly-food-day{padding:6px 7px!important}
  .property-page .weekly-food-day small{font-size:8.5px!important}

  /* Related properties should be visible immediately, not a tall empty block. */
  .property-page .section-alt{padding:18px 0 74px!important}
  .property-page .section-alt .section-head{margin-bottom:10px!important}
  .property-page .section-alt .section-head h2{
    margin:3px 0 0!important;
    font-size:22px!important;
    line-height:1.12!important;
  }
  .property-page .section-alt .section-head .btn{min-height:32px;padding:6px 10px;font-size:9px}
  .property-page #relatedProperties{
    display:flex!important;
    grid-template-columns:none!important;
    gap:9px!important;
    overflow-x:auto!important;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    padding:1px 1px 4px;
  }
  .property-page #relatedProperties::-webkit-scrollbar{display:none}
  .property-page #relatedProperties .property-card{
    flex:0 0 min(78vw,290px)!important;
    scroll-snap-align:start;
    border-radius:14px;
  }
  .property-page #relatedProperties .property-card-media{aspect-ratio:16/9!important}
  .property-page #relatedProperties .property-card-body{padding:9px!important}
  .property-page #relatedProperties .property-card-body h3{font-size:12.5px!important}
  .property-page #relatedProperties .card-stats{display:none!important}
  .property-page #relatedProperties .btn{min-height:31px!important;font-size:8.5px!important}

  /* Slightly slimmer persistent contact dock. */
  .property-page .mobile-actions{
    min-height:54px!important;
    padding:6px 10px!important;
  }
  .property-page .mobile-actions .btn{min-height:36px!important}
}

/* =========================================================
   PUBLIC UI V6.9 — structured nearby places
   ========================================================= */
.nearby-structured{display:grid;gap:9px;margin-top:12px}
.nearby-title-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.nearby-view-all{border:0;background:transparent;color:#1e6a5a;font:inherit;font-size:12px;font-weight:800;cursor:pointer;padding:4px 0}
.nearby-structured .nearby-list{display:flex;gap:8px;flex-wrap:wrap}
.nearby-structured .nearby-place{display:inline-flex;align-items:center;gap:8px;min-width:0;padding:8px 10px;border:1px solid #dbe7e4;border-radius:12px;background:#fff;color:#24423d;text-decoration:none;box-shadow:0 5px 14px rgba(24,63,55,.05)}
.nearby-structured .nearby-place:hover{border-color:#b8d5ce;transform:translateY(-1px)}
.nearby-place-icon{display:grid;place-items:center;flex:0 0 24px;width:24px;height:24px;border-radius:8px;background:#edf7f4;color:#1f6d5c;font-weight:900;font-size:12px}
.nearby-place-main{display:grid;gap:1px;min-width:0}
.nearby-place-main b{font-size:11px;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px}
.nearby-place-main small{font-size:10px;color:#71847f}

.nearby-modal{position:fixed;inset:0;z-index:1800;display:grid;place-items:center;padding:20px;background:rgba(18,35,31,.55);backdrop-filter:blur(4px)}
.nearby-modal[hidden]{display:none!important}
.nearby-modal-panel{width:min(900px,96vw);max-height:min(760px,90vh);overflow:auto;background:#f8fbfa;border:1px solid #d9e5e2;border-radius:22px;box-shadow:0 28px 80px rgba(15,42,35,.24);padding:20px}
.nearby-modal-head{position:sticky;top:-20px;z-index:2;display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin:-20px -20px 16px;padding:18px 20px 14px;background:rgba(248,251,250,.96);border-bottom:1px solid #e3ece9;backdrop-filter:blur(8px)}
.nearby-modal-head h2{margin:2px 0 0;font-size:24px;line-height:1.15;color:#183b34}
.nearby-modal-close{display:grid;place-items:center;width:38px;height:38px;border:1px solid #d7e3df;border-radius:12px;background:#fff;color:#335b53;font-size:24px;line-height:1;cursor:pointer}
.nearby-modal-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.nearby-group{background:#fff;border:1px solid #e0e9e6;border-radius:16px;padding:12px}
.nearby-group h3{display:flex;align-items:center;gap:7px;margin:0 0 8px;font-size:13px;color:#244b43}
.nearby-group h3 span{display:grid;place-items:center;width:24px;height:24px;border-radius:8px;background:#edf7f4;color:#1e6b59}
.nearby-group-list{display:grid;gap:5px}
.nearby-group-item{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 9px;border-radius:10px;color:#243d38;text-decoration:none}
.nearby-group-item:hover{background:#f4f9f7}
.nearby-group-item>span{display:grid;gap:2px;min-width:0}
.nearby-group-item b{font-size:11px;font-weight:800}
.nearby-group-item small{font-size:10px;line-height:1.35;color:#71817d}
.nearby-group-item strong{flex:0 0 auto;font-size:10px;color:#1e6b59;background:#edf7f4;border-radius:999px;padding:4px 7px}
body.nearby-modal-open{overflow:hidden}

@media(max-width:700px){
  .nearby-structured .nearby-list{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;margin-right:-14px;padding-right:14px}
  .nearby-structured .nearby-list::-webkit-scrollbar{display:none}
  .nearby-structured .nearby-place{flex:0 0 auto;max-width:215px}
  .nearby-place-main b{max-width:150px}
  .nearby-modal{place-items:end center;padding:0;background:rgba(18,35,31,.48)}
  .nearby-modal-panel{width:100%;max-height:78vh;border-radius:22px 22px 0 0;padding:16px 14px 22px}
  .nearby-modal-head{top:-16px;margin:-16px -14px 12px;padding:15px 14px 12px}
  .nearby-modal-head h2{font-size:19px}
  .nearby-modal-groups{grid-template-columns:1fr;gap:9px}
  .nearby-group{padding:10px}
}

/* ============================================================
   PUBLIC UI V6.11 — balanced responsive typography
   Keeps the compact property UI readable on desktop and mobile.
   ============================================================ */
.property-page .property-summary-v61 h1{
  font-size:clamp(30px,2.35vw,38px)!important;
  line-height:1.08!important;
  letter-spacing:-.025em!important;
  font-weight:640!important;
}
.property-page .eyebrow,
.property-page .property-location-label{
  font-size:12px!important;
  letter-spacing:.12em!important;
}
.property-page .property-availability-pill{
  font-size:11px!important;
  font-weight:760!important;
}
.property-page .property-audience-chips .chip{
  font-size:11px!important;
  font-weight:720!important;
}
.property-page .property-address{
  font-size:14px!important;
  line-height:1.5!important;
}
.property-page .property-quick-fact span{
  font-size:10.5px!important;
  letter-spacing:.06em!important;
}
.property-page .property-quick-fact strong{
  font-size:14px!important;
}
.property-page .property-quick-fact:first-child strong{
  font-size:18px!important;
}
.property-page .property-quick-fact small{
  font-size:10.5px!important;
}
.property-page .property-rate-options-head,
.property-page .sharing-heading{
  font-size:12px!important;
  font-weight:760!important;
}
.property-page .property-rate-pill-v63>span,
.property-page .property-rate-pill span{
  font-size:12px!important;
}
.property-page .property-rate-pill-v63>strong,
.property-page .property-rate-pill strong{
  font-size:16px!important;
}
.property-page .property-rate-pill-v63>small{
  font-size:10.5px!important;
}
.property-page .property-highlight-amenity,
.property-page .property-highlight-more{
  font-size:10.5px!important;
}
.property-page .property-actions .btn,
.property-page .property-actions-v61 .btn,
.property-page .location-directions,
.property-page .gallery-view-all{
  font-size:12px!important;
}
.property-page .property-direct-note,
.property-page .property-hours{
  font-size:10.5px!important;
}
.property-page .content-card h2,
.property-page .section-head h2,
.property-page .location-section-head h2{
  font-size:clamp(23px,2vw,29px)!important;
  line-height:1.15!important;
  font-weight:640!important;
  letter-spacing:-.018em!important;
}
.property-page .content-card p,
.property-page .content-card li,
.property-page .property-description,
.property-page .location-address-row p{
  font-size:14.5px!important;
  line-height:1.6!important;
}
.property-page .weekly-food-menu-trigger{
  font-size:12px!important;
}
.property-page .weekly-food-menu-popover>strong{
  font-size:13px!important;
}
.property-page .weekly-food-day>span,
.property-page .weekly-food-day small{
  font-size:11px!important;
}
.property-page .nearby-view-all{
  font-size:12px!important;
}
.property-page .nearby-place-main b,
.property-page .nearby-group-item b{
  font-size:12px!important;
}
.property-page .nearby-place-main small,
.property-page .nearby-group-item small,
.property-page .nearby-group-item strong{
  font-size:10.5px!important;
}
.property-page #relatedProperties .property-card-body h3{
  font-size:14px!important;
}
.property-page #relatedProperties .property-location{
  font-size:11px!important;
}
.property-page #relatedProperties .btn{
  font-size:11px!important;
}

@media (max-width:720px){
  .property-page .brand-copy{font-size:14px!important}
  .property-page .brand-copy small{font-size:8px!important}
  .property-page .property-summary-v61 h1{
    font-size:24px!important;
    line-height:1.1!important;
  }
  .property-page .eyebrow,
  .property-page .property-location-label{font-size:10px!important}
  .property-page .property-availability-pill{font-size:9.5px!important}
  .property-page .property-audience-chips .chip{font-size:9.5px!important}
  .property-page .property-address{
    font-size:12.5px!important;
    line-height:1.45!important;
  }
  .property-page .property-quick-fact span{font-size:9px!important}
  .property-page .property-quick-fact strong{font-size:12px!important}
  .property-page .property-quick-fact:first-child strong{font-size:15px!important}
  .property-page .property-quick-fact small{font-size:9px!important}
  .property-page .property-rate-options-head,
  .property-page .sharing-heading{font-size:11px!important}
  .property-page .property-rate-pill-v63>span,
  .property-page .property-rate-pill span{font-size:10.5px!important}
  .property-page .property-rate-pill-v63>strong,
  .property-page .property-rate-pill strong{font-size:15px!important}
  .property-page .property-rate-pill-v63>small{font-size:9.5px!important}
  .property-page .property-highlight-amenity,
  .property-page .property-highlight-more{font-size:9.5px!important}
  .property-page .content-card h2,
  .property-page .section-head h2,
  .property-page .location-section-head h2{
    font-size:20px!important;
    line-height:1.18!important;
  }
  .property-page .content-card p,
  .property-page .content-card li,
  .property-page .property-description,
  .property-page .location-address-row p{
    font-size:13.5px!important;
    line-height:1.55!important;
  }
  .property-page .weekly-food-menu-trigger{font-size:11px!important}
  .property-page .weekly-food-menu-popover>strong{font-size:12px!important}
  .property-page .weekly-food-day>span,
  .property-page .weekly-food-day small{font-size:10px!important}
  .property-page .property-actions .btn,
  .property-page .property-actions-v61 .btn,
  .property-page .location-directions,
  .property-page .gallery-view-all{font-size:10.5px!important}
  .property-page .mobile-contact-bar .btn,
  .property-page .sticky-contact-bar .btn{font-size:12px!important}
  .property-page #relatedProperties .property-card-body h3{font-size:13px!important}
  .property-page #relatedProperties .property-location{font-size:10.5px!important}
  .property-page #relatedProperties .btn{font-size:10.5px!important}
}

/* ============================================================
   PUBLIC UI V6.15 — neutral balanced hero (olive removed)
   Desktop: gallery and key details share one balanced visual row.
   Mobile: natural stacked layout remains unchanged.
   ============================================================ */
@media (min-width:901px){
  .property-page .property-hero-v6{
    align-items:stretch!important;
    gap:18px!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
    overflow:visible!important;
  }

  .property-page .property-gallery-v6{
    display:flex!important;
    min-width:0;
    min-height:430px;
    padding:8px;
    border:1px solid rgba(67,82,77,.13);
    border-radius:24px;
    background:linear-gradient(145deg,#f5f7f6 0%,#e8edeb 100%);
    box-shadow:0 16px 38px rgba(33,55,49,.09);
  }

  .property-page .property-gallery-stage{
    flex:1 1 auto;
    width:100%;
    height:100%!important;
    min-height:414px!important;
    max-height:none!important;
    aspect-ratio:auto!important;
    border-radius:18px!important;
    background:#e9eeec!important;
    box-shadow:inset 0 0 0 1px rgba(61,79,73,.08)!important;
  }

  .property-page .property-summary-v61{
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    min-height:430px;
    height:100%;
    padding:18px 19px 16px!important;
    border:1px solid #e0e6e3;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#f8faf9 100%);
    box-shadow:0 16px 38px rgba(33,55,49,.07);
  }

  .property-page .property-summary-heading{
    padding-bottom:10px;
    border-color:#e4e9e7;
  }

  .property-page .property-address{
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    max-height:none!important;
  }

  .property-page .property-rate-options{
    margin:10px 0 8px;
    background:#fbfcfc;
    border-color:#e2e8e5;
  }

  .property-page .property-highlight-amenities{margin-top:7px}
  .property-page .weekly-food-menu{margin:5px 0 7px}
  .property-page .property-actions-v61{margin-top:auto;padding-top:8px}
  .property-page .property-direct-note{margin-top:6px}

  .property-page .gallery-view-all{
    right:14px;
    bottom:14px;
    min-height:34px;
    padding:7px 12px;
    border-color:rgba(255,255,255,.76);
    background:rgba(24,42,37,.80);
    box-shadow:0 7px 20px rgba(14,30,25,.18);
  }
  .property-page .gallery-view-all:hover{background:rgba(18,34,29,.92)}
}

@media (prefers-color-scheme:dark){
  .property-page .property-top{
    background:linear-gradient(180deg,#171a19 0%,#1d211f 100%)!important;
  }
  .property-page .property-hero-v6{background:transparent!important}
  .property-page .property-gallery-v6{
    border-color:#343b38;
    background:linear-gradient(145deg,#2c312f 0%,#222725 100%);
    box-shadow:0 18px 42px rgba(0,0,0,.30);
  }
  .property-page .property-gallery-stage{
    background:#202523!important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.07)!important;
  }
  .property-page .property-summary-v61{
    border-color:#343b38;
    background:linear-gradient(180deg,#232826 0%,#1d2220 100%);
    box-shadow:0 18px 42px rgba(0,0,0,.20);
    color:#eef2f0;
  }
  .property-page .property-summary-heading{border-color:#353d39}
  .property-page .property-summary-v61 h1{color:#f5f7f6!important}
  .property-page .property-address,
  .property-page .property-rate-options-head span,
  .property-page .property-rate-pill-v63>span{color:#cbd3cf!important}
  .property-page .property-rate-options,
  .property-page .property-rate-pill-v63{
    border-color:#353d39!important;
    background:#272d2a!important;
  }
  .property-page .property-rate-pill-v63>strong{color:#f3f6f4!important}
  .property-page .property-rate-pill-v63>small,
  .property-page .property-rate-options-head small{color:#aeb8b3!important}
  .property-page .property-highlight-amenity,
  .property-page .property-highlight-more{
    border-color:#3a423e!important;
    background:#2a302d!important;
    color:#e1e7e4!important;
  }
  .property-page .property-direct-note{color:#aeb8b3!important}
}

@media (max-width:900px){
  .property-page .property-gallery-v6{
    padding:5px;
    border:1px solid rgba(67,82,77,.11);
    border-radius:16px;
    background:linear-gradient(145deg,#f5f7f6 0%,#e9eeec 100%);
  }
  .property-page .property-gallery-stage{
    border-radius:12px!important;
    background:#e9eeec!important;
  }
  .property-page .property-summary-v61{
    background:transparent;
    border:0;
    box-shadow:none;
  }
}

/* ============================================================
   PUBLIC UI V6.14 — transparent floating glass header
   ============================================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:120;
  background:transparent!important;
  border-bottom:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  padding:9px 0 0;
}
.site-header .header-row{
  min-height:56px;
  padding:5px 8px 5px 10px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:18px;
  background:rgba(250,252,248,.72);
  box-shadow:0 10px 28px rgba(28,52,45,.10), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(18px) saturate(135%);
  -webkit-backdrop-filter:blur(18px) saturate(135%);
}
.site-header .brand{
  gap:9px;
  min-width:0;
  transition:transform .18s ease;
}
.site-header .brand:hover{transform:translateY(-1px)}
.site-header .brand img{
  width:36px;
  height:36px;
  padding:2px;
  border-radius:11px;
  background:rgba(255,255,255,.76);
  box-shadow:0 4px 12px rgba(35,58,49,.10);
}
.site-header .brand-copy{
  color:#193b33;
  font-weight:720;
  letter-spacing:-.015em;
}
.site-header .brand-copy small{
  margin-top:1px;
  color:#718078;
  font-size:7.5px;
  font-weight:650;
  letter-spacing:.085em;
}
.site-header .nav{gap:7px}
.site-header .nav-link{
  padding:7px 8px;
  border-radius:10px;
  color:#36574f;
  font-weight:650;
  transition:background .18s ease,color .18s ease;
}
.site-header .nav-link:hover{
  color:var(--brand);
  background:rgba(255,255,255,.70);
}
.site-header .btn{
  min-height:34px;
  padding:6px 11px;
  border-radius:11px;
  box-shadow:none;
}
.site-header .btn-primary{
  background:linear-gradient(135deg,#0b6b5d 0%,#075247 100%);
  border-color:rgba(7,82,71,.45);
  box-shadow:0 5px 14px rgba(11,107,93,.17);
}
.site-header .btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 7px 18px rgba(11,107,93,.22);
}

/* Keep the floating header compact on property pages and catalogue. */
.property-page .property-top,
.home-catalogue .catalog-intro{scroll-margin-top:78px}

@media (max-width:760px){
  .site-header{padding-top:6px}
  .site-header .wrap{width:min(100% - 18px,1160px)}
  .site-header .header-row{
    min-height:48px!important;
    padding:4px 6px 4px 7px;
    border-radius:15px;
    background:rgba(250,252,248,.80);
  }
  .site-header .brand{gap:7px}
  .site-header .brand img{width:31px!important;height:31px!important;border-radius:9px}
  .site-header .brand-copy{font-size:12.5px!important;line-height:1.05}
  .site-header .brand-copy small{display:none!important}
  .site-header .nav{gap:5px}
  .site-header .nav-link{display:none}
  .site-header .nav .btn,
  .property-page .site-header .nav .btn-primary{
    display:inline-flex!important;
    min-height:31px!important;
    padding:5px 9px!important;
    border-radius:9px;
    font-size:9.5px!important;
  }
}

@media (prefers-color-scheme:dark){
  .site-header .header-row{
    border-color:rgba(154,172,153,.18);
    background:rgba(24,32,27,.74);
    box-shadow:0 12px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  }
  .site-header .brand img{
    background:rgba(255,255,255,.08);
    box-shadow:none;
  }
  .site-header .brand-copy{color:#eef4eb}
  .site-header .brand-copy small{color:#9fab9f}
  .site-header .nav-link{color:#c8d5cc}
  .site-header .nav-link:hover{background:rgba(255,255,255,.06);color:#eef4eb}
}

@media (prefers-reduced-motion:reduce){
  .site-header .brand,
  .site-header .btn-primary{transition:none!important}
  .site-header .brand:hover,
  .site-header .btn-primary:hover{transform:none!important}
}


/* ============================================================
   PUBLIC UI V6.16 — truly transparent header
   ============================================================ */
.site-header{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.site-header .header-row{
  background:transparent!important;
  border-color:transparent!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.site-header .brand img{
  background:transparent!important;
  box-shadow:none!important;
}
.site-header .nav-link{
  background:transparent!important;
}
.site-header .nav-link:hover{
  background:rgba(7,94,84,.06)!important;
}
.site-header .btn:not(.btn-primary){
  background:rgba(255,255,255,.28)!important;
  border-color:rgba(7,94,84,.14)!important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
@media (max-width:760px){
  .site-header .header-row{
    background:transparent!important;
    border-color:transparent!important;
    box-shadow:none!important;
  }
}
@media (prefers-color-scheme:dark){
  .site-header .header-row{
    background:transparent!important;
    border-color:transparent!important;
    box-shadow:none!important;
  }
  .site-header .brand img{background:transparent!important}
  .site-header .btn:not(.btn-primary){
    background:rgba(18,28,24,.28)!important;
    border-color:rgba(255,255,255,.12)!important;
    color:#eef4eb!important;
  }
}

/* ============================================================
   V6.19 — Day-wise weekly food menu preview
   Compact in property details; hover/focus by day on desktop,
   tap/swipe-friendly on mobile. Menu items are intentionally bold.
   ============================================================ */
.property-page .weekly-food-menu-v619{margin:6px 0 10px;z-index:28}
.property-page .weekly-food-menu-v619 .weekly-food-menu-trigger{
  min-height:40px;
  padding:7px 12px;
  gap:9px;
  border:1px solid rgba(194,143,61,.30);
  background:linear-gradient(135deg,rgba(255,250,238,.98),rgba(250,240,216,.94));
  color:#5e4522;
  box-shadow:0 8px 24px rgba(101,72,31,.08);
}
.property-page .weekly-food-menu-trigger-copy{display:grid;gap:1px;text-align:left;line-height:1.1}
.property-page .weekly-food-menu-trigger-copy b{font-size:12px;font-weight:800;letter-spacing:-.01em}
.property-page .weekly-food-menu-trigger-copy small{font-size:9.5px;font-weight:600;color:#8a714d}
.property-page .weekly-food-menu-v619 .weekly-food-menu-popover{
  width:min(520px,90vw);
  max-height:430px;
  padding:14px;
  border:1px solid #e9dcc6;
  border-radius:18px;
  background:#fffdf9;
  color:#303735;
  box-shadow:0 22px 60px rgba(43,48,45,.18);
}
.property-page .weekly-food-menu-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px
}
.property-page .weekly-food-menu-head>div{display:grid;gap:2px}
.property-page .weekly-food-menu-head strong{font-size:14px!important;font-weight:800;color:#283532}
.property-page .weekly-food-menu-head small{font-size:10px;color:#77827e}
.property-page .weekly-food-menu-hint{
  font-size:9px;font-weight:700;color:#816d4e;background:#f6efe2;border-radius:999px;padding:5px 7px;white-space:nowrap
}
.property-page .weekly-food-day-tabs{
  display:grid;grid-template-columns:repeat(7,minmax(48px,1fr));gap:6px;margin-bottom:10px
}
.property-page .food-day-tab{
  --food-day:#58716b;
  border:1px solid color-mix(in srgb,var(--food-day) 24%,#fff);
  border-radius:12px;
  background:color-mix(in srgb,var(--food-day) 8%,#fff);
  color:#35413e;
  min-height:48px;
  padding:6px 4px;
  display:grid;place-items:center;gap:1px;
  cursor:pointer;
  transition:transform .16s ease,background .16s ease,color .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.property-page .food-day-tab b{font-size:10.5px;font-weight:850}
.property-page .food-day-tab small{font-size:8.5px;color:inherit;opacity:.75}
.property-page .food-day-tab:hover,.property-page .food-day-tab:focus-visible{transform:translateY(-1px)}
.property-page .food-day-tab.is-active{
  background:var(--food-day);color:#fff;border-color:var(--food-day);box-shadow:0 7px 16px color-mix(in srgb,var(--food-day) 22%,transparent)
}
.property-page .food-day-tab.day-0,.property-page .food-day-panel.day-0{--food-day:#4f7d94}
.property-page .food-day-tab.day-1,.property-page .food-day-panel.day-1{--food-day:#4d8a73}
.property-page .food-day-tab.day-2,.property-page .food-day-panel.day-2{--food-day:#b07842}
.property-page .food-day-tab.day-3,.property-page .food-day-panel.day-3{--food-day:#76659b}
.property-page .food-day-tab.day-4,.property-page .food-day-panel.day-4{--food-day:#a35f73}
.property-page .food-day-tab.day-5,.property-page .food-day-panel.day-5{--food-day:#b56b45}
.property-page .food-day-tab.day-6,.property-page .food-day-panel.day-6{--food-day:#607e4f}
.property-page .food-day-panel{
  border:1px solid color-mix(in srgb,var(--food-day) 18%,#e7ebe9);
  border-top:3px solid var(--food-day);
  border-radius:14px;
  padding:10px;
  background:color-mix(in srgb,var(--food-day) 3%,#fff);
}
.property-page .food-day-panel[hidden]{display:none!important}
.property-page .food-day-panel-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px}
.property-page .food-day-panel-head>div{display:flex;align-items:baseline;gap:7px}
.property-page .food-day-panel-head b{font-size:13px;font-weight:850;color:#293532}
.property-page .food-day-panel-head small{font-size:9.5px;color:#79847f}
.property-page .food-day-panel-head>span{font-size:8.5px;font-weight:800;color:#fff;background:var(--food-day);border-radius:999px;padding:4px 7px}
.property-page .food-meal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}
.property-page .food-meal-card{
  --meal-accent:#6b7d77;
  min-width:0;
  padding:9px;
  border:1px solid color-mix(in srgb,var(--meal-accent) 18%,#e8ecea);
  border-radius:11px;
  background:color-mix(in srgb,var(--meal-accent) 5%,#fff);
  display:grid;gap:5px;
}
.property-page .food-meal-card.meal-breakfast{--meal-accent:#c38a2f}
.property-page .food-meal-card.meal-lunch{--meal-accent:#4c866d}
.property-page .food-meal-card.meal-dinner{--meal-accent:#655d9c}
.property-page .food-meal-card.meal-snack{--meal-accent:#b56365}
.property-page .food-meal-label{display:flex;align-items:center;justify-content:space-between;gap:5px;color:var(--meal-accent)}
.property-page .food-meal-label span{font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.045em}
.property-page .food-meal-label small{font-size:7.8px;font-weight:700;white-space:nowrap}
.property-page .food-meal-card>strong{
  font-size:12px!important;
  line-height:1.35!important;
  font-weight:800!important;
  color:#2c3734!important;
  overflow-wrap:anywhere;
}

@media(max-width:720px){
  .property-page .weekly-food-menu-v619{display:flex;width:100%;margin:5px 0 8px}
  .property-page .weekly-food-menu-v619 .weekly-food-menu-trigger{width:100%;justify-content:flex-start;min-height:38px}
  .property-page .weekly-food-menu-trigger-copy small{font-size:9px}
  .property-page .weekly-food-menu-v619 .weekly-food-menu-popover{
    left:8px!important;right:8px!important;bottom:62px!important;width:auto!important;max-height:66vh!important;padding:12px!important;border-radius:18px!important
  }
  .property-page .weekly-food-menu-hint{display:none}
  .property-page .weekly-food-day-tabs{
    display:flex;grid-template-columns:none;gap:6px;overflow-x:auto;scrollbar-width:none;padding:1px 1px 4px;margin-right:-2px
  }
  .property-page .weekly-food-day-tabs::-webkit-scrollbar{display:none}
  .property-page .food-day-tab{flex:0 0 54px;min-height:45px;border-radius:11px}
  .property-page .food-day-tab b{font-size:10.5px}
  .property-page .food-day-tab small{font-size:8px}
  .property-page .food-meal-grid{grid-template-columns:1fr;gap:6px}
  .property-page .food-meal-card{padding:8px 9px;display:grid;grid-template-columns:90px 1fr;align-items:start;gap:8px}
  .property-page .food-meal-label{display:grid;justify-content:start;gap:1px}
  .property-page .food-meal-label span{font-size:9px}
  .property-page .food-meal-label small{font-size:8px}
  .property-page .food-meal-card>strong{font-size:12.5px!important;line-height:1.3!important}
}

@media(prefers-reduced-motion:reduce){
  .property-page .food-day-tab{transition:none!important}
}

/* ============================================================
   V6.20 — Weekly food menu: modern menu-board UI
   Restaurant-inspired day selector + meal timeline.
   ============================================================ */
.property-page .weekly-food-menu-v620{position:relative;display:inline-flex;margin:6px 0 10px;z-index:30}
.property-page .weekly-food-menu-v620 .weekly-food-menu-trigger{
  min-height:42px;padding:7px 13px 7px 9px;gap:9px;border:0;border-radius:14px;
  background:linear-gradient(135deg,#26383d,#354b4b);color:#fff;
  box-shadow:0 10px 24px rgba(33,48,50,.16);cursor:pointer;
}
.property-page .weekly-food-menu-v620 .weekly-food-menu-icon{
  width:28px;height:28px;border-radius:10px;background:#f0a66f;color:#27383b;display:grid;place-items:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.28)
}
.property-page .weekly-food-menu-v620 .weekly-food-menu-icon svg{width:16px;height:16px}
.property-page .weekly-food-menu-v620 .weekly-food-menu-trigger-copy{gap:2px}
.property-page .weekly-food-menu-v620 .weekly-food-menu-trigger-copy b{font-size:12.5px;font-weight:800;color:#fff}
.property-page .weekly-food-menu-v620 .weekly-food-menu-trigger-copy small{font-size:9.5px;font-weight:600;color:#cfd9d7}
.property-page .weekly-food-menu-v620 .weekly-food-menu-popover{
  width:min(540px,92vw);max-height:460px;padding:15px;border:1px solid #e7ded2;border-radius:20px;
  background:#fffaf3;color:#263334;box-shadow:0 26px 70px rgba(25,35,37,.22);overflow:auto
}
.property-page .weekly-food-menu-v620 .weekly-food-menu-head{align-items:center;margin-bottom:12px}
.property-page .weekly-food-menu-v620 .food-menu-title{display:grid;gap:1px}
.property-page .weekly-food-menu-v620 .food-menu-title>span{
  font-size:8px;font-weight:850;letter-spacing:.16em;text-transform:uppercase;color:#c06f4d
}
.property-page .weekly-food-menu-v620 .food-menu-title strong{font-size:16px!important;line-height:1.15;color:#243235}
.property-page .weekly-food-menu-v620 .food-menu-title small{font-size:10px;color:#78817e}
.property-page .weekly-food-menu-v620 .weekly-food-menu-hint{
  padding:5px 8px;border:1px solid #e7ded2;border-radius:999px;background:#fff;color:#7a7168;font-size:8.5px;font-weight:750
}
.property-page .weekly-food-menu-v620 .weekly-food-day-tabs{
  display:flex;gap:7px;overflow-x:auto;scrollbar-width:none;padding:1px 1px 7px;margin-bottom:9px
}
.property-page .weekly-food-menu-v620 .weekly-food-day-tabs::-webkit-scrollbar{display:none}
.property-page .weekly-food-menu-v620 .food-day-tab{
  --food-day:#d97757;flex:1 0 58px;min-height:51px;padding:6px 7px;border:1px solid #e6ddd2;border-radius:15px;
  background:#fff;color:#354043;display:grid;place-items:center;align-content:center;gap:1px;box-shadow:0 3px 10px rgba(44,48,45,.04)
}
.property-page .weekly-food-menu-v620 .food-day-tab b{font-size:10.5px;font-weight:850}
.property-page .weekly-food-menu-v620 .food-day-tab small{font-size:8px;color:#8a8f8c;opacity:1}
.property-page .weekly-food-menu-v620 .food-day-tab:hover,.property-page .weekly-food-menu-v620 .food-day-tab:focus-visible{
  transform:translateY(-2px);border-color:color-mix(in srgb,var(--food-day) 45%,#e6ddd2)
}
.property-page .weekly-food-menu-v620 .food-day-tab.is-active{
  background:var(--food-day);color:#fff;border-color:var(--food-day);box-shadow:0 9px 18px color-mix(in srgb,var(--food-day) 24%,transparent)
}
.property-page .weekly-food-menu-v620 .food-day-tab.is-active small{color:#fff;opacity:.82}
.property-page .weekly-food-menu-v620 .food-day-tab.day-0,.property-page .weekly-food-menu-v620 .food-day-panel.day-0{--food-day:#d66f4f}
.property-page .weekly-food-menu-v620 .food-day-tab.day-1,.property-page .weekly-food-menu-v620 .food-day-panel.day-1{--food-day:#377b71}
.property-page .weekly-food-menu-v620 .food-day-tab.day-2,.property-page .weekly-food-menu-v620 .food-day-panel.day-2{--food-day:#bd8b3f}
.property-page .weekly-food-menu-v620 .food-day-tab.day-3,.property-page .weekly-food-menu-v620 .food-day-panel.day-3{--food-day:#64709a}
.property-page .weekly-food-menu-v620 .food-day-tab.day-4,.property-page .weekly-food-menu-v620 .food-day-panel.day-4{--food-day:#a95f72}
.property-page .weekly-food-menu-v620 .food-day-tab.day-5,.property-page .weekly-food-menu-v620 .food-day-panel.day-5{--food-day:#987448}
.property-page .weekly-food-menu-v620 .food-day-tab.day-6,.property-page .weekly-food-menu-v620 .food-day-panel.day-6{--food-day:#5f7f59}
.property-page .weekly-food-menu-v620 .food-day-panel{
  padding:11px 12px 12px;border:1px solid #e9e0d5;border-radius:16px;background:#fff;box-shadow:0 5px 16px rgba(43,50,48,.04)
}
.property-page .weekly-food-menu-v620 .food-day-panel-head{margin-bottom:5px;padding-bottom:7px;border-bottom:1px dashed #e8ded2}
.property-page .weekly-food-menu-v620 .food-day-panel-head b{font-size:14px;font-weight:850;color:#283638}
.property-page .weekly-food-menu-v620 .food-day-panel-head small{font-size:9px;color:#8a918e}
.property-page .weekly-food-menu-v620 .food-day-panel-head>span{background:var(--food-day);font-size:8px;padding:4px 7px}
.property-page .weekly-food-menu-v620 .food-meal-grid{display:grid;grid-template-columns:1fr;gap:0}
.property-page .weekly-food-menu-v620 .food-meal-card{
  --meal-accent:#64736f;display:grid;grid-template-columns:34px minmax(0,1fr);gap:10px;align-items:center;
  padding:10px 2px;border:0;border-bottom:1px solid #eee5da;border-radius:0;background:transparent
}
.property-page .weekly-food-menu-v620 .food-meal-card:last-child{border-bottom:0;padding-bottom:3px}
.property-page .weekly-food-menu-v620 .food-meal-card.meal-breakfast{--meal-accent:#d39632}
.property-page .weekly-food-menu-v620 .food-meal-card.meal-lunch{--meal-accent:#3f8173}
.property-page .weekly-food-menu-v620 .food-meal-card.meal-dinner{--meal-accent:#62699c}
.property-page .weekly-food-menu-v620 .food-meal-card.meal-snack{--meal-accent:#b95f62}
.property-page .weekly-food-menu-v620 .food-meal-symbol{
  width:31px;height:31px;border-radius:10px;display:grid;place-items:center;background:color-mix(in srgb,var(--meal-accent) 12%,#fff);
  color:var(--meal-accent);font-size:16px;font-weight:900
}
.property-page .weekly-food-menu-v620 .food-meal-meta{min-width:0;display:grid;gap:3px}
.property-page .weekly-food-menu-v620 .food-meal-label{display:flex;align-items:center;gap:7px;justify-content:flex-start;color:var(--meal-accent)}
.property-page .weekly-food-menu-v620 .food-meal-label span{font-size:8.5px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.property-page .weekly-food-menu-v620 .food-meal-label small{font-size:8px;font-weight:700;color:#8b8f8c}
.property-page .weekly-food-menu-v620 .food-meal-card>strong,
.property-page .weekly-food-menu-v620 .food-meal-meta>strong{
  font-size:13px!important;line-height:1.32!important;font-weight:800!important;color:#283437!important;overflow-wrap:anywhere
}

@media(max-width:720px){
  .property-page .weekly-food-menu-v620{display:flex;width:100%;margin:5px 0 8px}
  .property-page .weekly-food-menu-v620 .weekly-food-menu-trigger{width:100%;justify-content:flex-start;min-height:42px;border-radius:13px}
  .property-page .weekly-food-menu-v620 .weekly-food-menu-popover{
    position:fixed!important;left:8px!important;right:8px!important;top:auto!important;bottom:62px!important;width:auto!important;max-height:68vh!important;
    padding:13px!important;border-radius:22px 22px 16px 16px!important
  }
  .property-page .weekly-food-menu-v620 .weekly-food-menu-hint{display:none}
  .property-page .weekly-food-menu-v620 .food-day-tab{flex:0 0 58px;min-height:48px;border-radius:14px}
  .property-page .weekly-food-menu-v620 .food-day-panel{padding:10px 11px;border-radius:15px}
  .property-page .weekly-food-menu-v620 .food-meal-card{grid-template-columns:32px minmax(0,1fr);gap:9px;padding:9px 1px}
  .property-page .weekly-food-menu-v620 .food-meal-symbol{width:29px;height:29px;border-radius:9px;font-size:15px}
  .property-page .weekly-food-menu-v620 .food-meal-meta>strong{font-size:12.5px!important}
}

@media(prefers-reduced-motion:reduce){
  .property-page .weekly-food-menu-v620 .food-day-tab{transition:none!important}
}

/* =========================================================
   V6.21 — balanced sharing-price block
   Keep Weekly Food Menu in its existing property-detail position.
   ========================================================= */
.property-page .property-rate-options-v621{
  margin:10px 0 8px;
  padding:10px 11px;
  border:1px solid #e3e9e7;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  box-shadow:none;
}
.property-page .property-rate-options-v621 .property-rate-options-head{
  margin:0 0 7px;
}
.property-page .property-rate-options-v621 .property-rate-options-head span{
  font-size:11.5px!important;
  font-weight:700!important;
  color:#314b45;
  letter-spacing:-.005em;
}
.property-page .property-rate-pills-v621{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(126px,1fr))!important;
  gap:7px!important;
  overflow:visible!important;
  padding:0!important;
}
.property-page .property-rate-pill-v621{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  grid-template-areas:
    "name price"
    "status status";
  align-items:center!important;
  gap:4px 8px!important;
  min-width:0!important;
  min-height:50px!important;
  padding:8px 9px!important;
  border:1px solid #e5eae8!important;
  border-radius:11px!important;
  background:#fff!important;
  box-shadow:0 2px 8px rgba(31,58,51,.035)!important;
  color:#233a35!important;
}
.property-page .property-rate-pill-v621:hover{
  transform:translateY(-1px);
  border-color:#cfdcd7!important;
  box-shadow:0 5px 13px rgba(31,58,51,.065)!important;
}
.property-page .property-rate-pill-v621 .rate-share-name{
  grid-area:name;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:11px!important;
  font-weight:650!important;
  color:#536762!important;
}
.property-page .property-rate-pill-v621 .rate-share-price{
  grid-area:price;
  font-size:15px!important;
  line-height:1!important;
  font-weight:760!important;
  color:#173f37!important;
  white-space:nowrap;
}
.property-page .property-rate-pill-v621 .rate-share-status{
  grid-area:status;
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  gap:5px;
  font-size:9px!important;
  line-height:1.2!important;
  font-weight:650!important;
  color:#60726d!important;
}
.property-page .property-rate-pill-v621 .rate-share-status::before{
  content:"";
  width:5px;
  height:5px;
  flex:0 0 5px;
  border-radius:50%;
  background:#2f8a69;
}
.property-page .property-rate-pill-v621 .rate-share-status.is-expected::before{background:#c28a39}
.property-page .property-rate-pill-v621 .rate-share-status.is-full::before{background:#9a6d4b}

@media (max-width:720px){
  .property-page .property-rate-options-v621{
    margin:7px 0 6px;
    padding:8px;
    border-radius:12px;
  }
  .property-page .property-rate-options-v621 .property-rate-options-head{margin-bottom:5px}
  .property-page .property-rate-options-v621 .property-rate-options-head span{font-size:10.5px!important}
  .property-page .property-rate-pills-v621{
    display:flex!important;
    gap:6px!important;
    overflow-x:auto!important;
    overscroll-behavior-x:contain;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }
  .property-page .property-rate-pills-v621::-webkit-scrollbar{display:none}
  .property-page .property-rate-pill-v621{
    flex:0 0 146px!important;
    min-height:47px!important;
    padding:7px 8px!important;
    scroll-snap-align:start;
  }
  .property-page .property-rate-pill-v621 .rate-share-name{font-size:10px!important}
  .property-page .property-rate-pill-v621 .rate-share-price{font-size:13px!important}
  .property-page .property-rate-pill-v621 .rate-share-status{font-size:8.5px!important}
}

/* PUBLIC UI V6.22 — customer-hub connectivity + cleaner desktop detail flow */
.property-page .detail-layout.detail-layout-single{
  grid-template-columns:minmax(0,1fr)!important;
  gap:0!important;
}
.property-page .connectivity-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#ffffff 0%,#f7faf9 100%);
}
.property-page .connectivity-section::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-90px;
  top:-90px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(20,113,94,.08),rgba(20,113,94,0) 68%);
  pointer-events:none;
}
.property-page .connectivity-section-head{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}
.property-page .connectivity-section-head h2{
  margin:2px 0 4px!important;
}
.property-page .connectivity-section-head p{
  margin:0;
  max-width:720px;
  color:#6c7d78;
  font-size:12px;
  line-height:1.5;
}
.property-page .connectivity-view-all{
  flex:0 0 auto;
  margin-top:4px;
  border:1px solid #d6e4e0;
  border-radius:999px;
  background:#fff;
  padding:7px 11px;
  box-shadow:0 4px 14px rgba(24,63,55,.04);
}
.property-page .connectivity-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}
.property-page .connectivity-place{
  min-width:0;
  display:grid;
  grid-template-columns:30px minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  padding:10px;
  border:1px solid #dfe9e6;
  border-radius:13px;
  background:rgba(255,255,255,.94);
  color:#203e38;
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.property-page .connectivity-place:hover{
  transform:translateY(-2px);
  border-color:#bfd7d0;
  box-shadow:0 8px 20px rgba(24,63,55,.07);
}
.property-page .connectivity-place-icon{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#eaf5f2;
  color:#146e5c;
  font-size:13px;
  font-weight:850;
}
.property-page .connectivity-place-copy{
  min-width:0;
  display:grid;
  gap:1px;
}
.property-page .connectivity-place-copy>small{
  color:#7c8c87;
  font-size:8px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.055em;
  font-weight:800;
}
.property-page .connectivity-place-copy>b{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:11px;
  line-height:1.3;
  font-weight:750;
}
.property-page .connectivity-place-copy>em{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#75847f;
  font-size:8.5px;
  line-height:1.25;
  font-style:normal;
}
.property-page .connectivity-place-meta{
  align-self:stretch;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:2px;
  padding-left:6px;
  border-left:1px solid #edf1ef;
  white-space:nowrap;
}
.property-page .connectivity-place-meta strong{
  color:#156c5a;
  font-size:9px;
}
.property-page .connectivity-place-meta small{
  color:#82918d;
  font-size:7.5px;
  font-weight:700;
}

/* The fixed/floating contact dock is the single desktop contact surface. */
.property-page .property-interest-compact{display:none!important}

@media (max-width:1180px){
  .property-page .connectivity-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:900px){
  .property-page .connectivity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .property-page .connectivity-section{padding:12px!important}
  .property-page .connectivity-section-head{display:grid;gap:7px;margin-bottom:10px}
  .property-page .connectivity-section-head p{font-size:11px;line-height:1.45}
  .property-page .connectivity-view-all{justify-self:start;margin:0;padding:6px 9px;font-size:10px}
  .property-page .connectivity-grid{
    display:flex;
    gap:8px;
    overflow-x:auto;
    margin-right:-12px;
    padding:1px 12px 3px 0;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }
  .property-page .connectivity-grid::-webkit-scrollbar{display:none}
  .property-page .connectivity-place{
    flex:0 0 min(82vw,280px);
    scroll-snap-align:start;
    grid-template-columns:28px minmax(0,1fr) auto;
    padding:9px;
  }
  .property-page .connectivity-place-icon{width:28px;height:28px}
  .property-page .connectivity-place-copy>b{font-size:10.5px}
  .property-page .connectivity-place-copy>small{font-size:7.5px}
  .property-page .connectivity-place-copy>em{font-size:8px}
}

/* =========================================================
   V6.23 — single-surface gallery + matched hero + inline food menu
   ========================================================= */
@media (min-width:901px){
  .property-page .property-hero-v6{
    display:grid!important;
    grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr)!important;
    align-items:stretch!important;
    gap:18px!important;
  }
  .property-page .property-gallery-v6{
    height:100%!important;
    min-height:0!important;
    padding:0!important;
    border:0!important;
    border-radius:22px!important;
    background:transparent!important;
    box-shadow:none!important;
    overflow:hidden!important;
  }
  .property-page .property-gallery-stage{
    width:100%!important;
    height:100%!important;
    min-height:100%!important;
    max-height:none!important;
    aspect-ratio:auto!important;
    border:1px solid #dfe7e4!important;
    border-radius:22px!important;
    background:#eef3f1!important;
    box-shadow:0 14px 34px rgba(27,53,47,.08)!important;
    overflow:hidden!important;
  }
  .property-page .property-gallery-stage img,
  .property-page .property-gallery-stage img.adaptive-detail-image{
    width:100%!important;
    height:100%!important;
    min-height:100%!important;
    object-fit:cover!important;
    border-radius:21px!important;
  }
  .property-page .property-summary-v61{
    height:100%!important;
    min-height:0!important;
    padding:17px 18px 15px!important;
    border-radius:22px!important;
    overflow:hidden!important;
  }
  .property-page .property-summary-heading{padding-bottom:8px!important}
  .property-page .property-rate-options-v621{margin:8px 0 6px!important;padding:8px 9px!important}
  .property-page .property-highlight-amenities{margin:5px 0!important}
  .property-page .property-hours{margin:5px 0!important;padding:7px 9px!important}
  .property-page .property-actions-v61{padding-top:6px!important}
}

/* Remove the layered/patched gallery look from earlier releases. */
.property-page .property-gallery-v6,
.property-page .property-gallery-stage,
.property-page .property-gallery-stage::before,
.property-page .property-gallery-stage::after{
  outline:0!important;
}
.property-page .property-gallery-stage{isolation:isolate}
.property-page .gallery-view-all{
  z-index:4!important;
  border:1px solid rgba(255,255,255,.78)!important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

/* Inline weekly food menu — lives inside property details, never as a popup. */
.property-page .weekly-food-menu,
.property-page .weekly-food-menu-v620,
.property-page .weekly-food-menu-popover{
  position:static;
}
.property-page .weekly-food-inline-v623{
  margin:6px 0 7px;
  padding:8px 9px 9px;
  border:1px solid #eadfce;
  border-radius:14px;
  background:linear-gradient(135deg,#fffaf1 0%,#fff 72%);
  box-shadow:0 4px 14px rgba(79,64,39,.045);
  overflow:hidden;
}
.property-page .food-inline-head{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:6px;
}
.property-page .food-inline-icon{
  width:27px;height:27px;flex:0 0 27px;border-radius:9px;
  display:grid;place-items:center;background:#f7dfbd;color:#965d1d;
}
.property-page .food-inline-icon svg{width:15px;height:15px}
.property-page .food-inline-title{display:grid;gap:0;min-width:0}
.property-page .food-inline-title strong{font-size:11px;font-weight:850;color:#3a332a;line-height:1.15}
.property-page .food-inline-title small{font-size:8px;color:#8b7a64;line-height:1.2}
.property-page .food-inline-hint{
  margin-left:auto;font-size:8px;font-weight:750;color:#8f7758;
  padding:3px 6px;border-radius:999px;background:#fff4df;border:1px solid #efdfc5;
}
.property-page .food-inline-days{
  display:flex;gap:5px;overflow-x:auto;padding:0 0 5px;scrollbar-width:none;overscroll-behavior-x:contain;
}
.property-page .food-inline-days::-webkit-scrollbar{display:none}
.property-page .food-inline-day{
  --food-day:#d66f4f;
  flex:1 0 48px;min-width:48px;min-height:32px;padding:4px 5px;
  border:1px solid #eadfd1;border-radius:9px;background:#fff;color:#4c4b46;
  display:grid;place-items:center;gap:0;cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.property-page .food-inline-day b{font-size:9px;font-weight:850;line-height:1.1}
.property-page .food-inline-day small{font-size:7px;color:#8f8b83;line-height:1.1}
.property-page .food-inline-day.is-active{
  color:#fff;background:var(--food-day);border-color:var(--food-day);box-shadow:0 5px 12px color-mix(in srgb,var(--food-day) 20%,transparent);
}
.property-page .food-inline-day.is-active small{color:rgba(255,255,255,.82)}
.property-page .food-inline-day.day-0,.property-page .food-inline-panel.day-0{--food-day:#d66f4f}
.property-page .food-inline-day.day-1,.property-page .food-inline-panel.day-1{--food-day:#377b71}
.property-page .food-inline-day.day-2,.property-page .food-inline-panel.day-2{--food-day:#bd8b3f}
.property-page .food-inline-day.day-3,.property-page .food-inline-panel.day-3{--food-day:#64709a}
.property-page .food-inline-day.day-4,.property-page .food-inline-panel.day-4{--food-day:#a95f72}
.property-page .food-inline-day.day-5,.property-page .food-inline-panel.day-5{--food-day:#987448}
.property-page .food-inline-day.day-6,.property-page .food-inline-panel.day-6{--food-day:#5f7f59}
.property-page .food-inline-panel{
  padding:6px 7px 5px;border-top:1px dashed #eadfce;background:rgba(255,255,255,.54);
}
.property-page .food-inline-panel[hidden]{display:none!important}
.property-page .food-inline-panel.food-inline-animate{
  animation:foodInlineIn .28s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes foodInlineIn{
  from{opacity:0;transform:translateY(7px)}
  to{opacity:1;transform:translateY(0)}
}
.property-page .food-inline-panel-title{
  display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:5px;
}
.property-page .food-inline-panel-title>div{display:flex;align-items:baseline;gap:5px}
.property-page .food-inline-panel-title b{font-size:10px;font-weight:850;color:#3a403d}
.property-page .food-inline-panel-title small{font-size:7.5px;color:#8c8f8d}
.property-page .food-inline-panel-title>span{
  font-size:7px;font-weight:850;color:#fff;background:var(--food-day);padding:2px 5px;border-radius:999px;
}
.property-page .food-inline-meals{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px;
}
.property-page .food-inline-meal{
  --meal-accent:#687773;
  min-width:0;padding:6px 7px;border-radius:9px;background:#fff;border:1px solid #ece7df;
  display:grid;grid-template-columns:20px minmax(0,1fr);gap:5px;align-items:start;
}
.property-page .food-inline-meal.meal-breakfast{--meal-accent:#d39632}
.property-page .food-inline-meal.meal-lunch{--meal-accent:#3f8173}
.property-page .food-inline-meal.meal-dinner{--meal-accent:#62699c}
.property-page .food-inline-meal.meal-snack{--meal-accent:#b95f62}
.property-page .food-inline-meal-symbol{
  width:19px;height:19px;border-radius:6px;display:grid;place-items:center;
  background:color-mix(in srgb,var(--meal-accent) 13%,#fff);color:var(--meal-accent);font-size:10px;font-weight:900;
}
.property-page .food-inline-meal>div{min-width:0;display:grid;gap:2px}
.property-page .food-inline-meal-label{display:flex;align-items:center;gap:4px;min-width:0}
.property-page .food-inline-meal-label span{font-size:7px;font-weight:900;letter-spacing:.055em;text-transform:uppercase;color:var(--meal-accent)}
.property-page .food-inline-meal-label small{font-size:6.8px;color:#8f8f89;white-space:nowrap}
.property-page .food-inline-meal strong{
  font-size:9.5px!important;line-height:1.22!important;font-weight:800!important;color:#303937!important;overflow-wrap:anywhere;
}
.property-page .weekly-food-inline-empty{padding:7px 9px}
.property-page .weekly-food-inline-empty .food-inline-head{margin:0}

@media (max-width:900px){
  .property-page .property-gallery-v6{
    padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important;border-radius:16px!important;
  }
  .property-page .property-gallery-stage{
    border:1px solid #dfe7e4!important;border-radius:16px!important;box-shadow:0 8px 22px rgba(27,53,47,.07)!important;
  }
  .property-page .property-gallery-stage img,
  .property-page .property-gallery-stage img.adaptive-detail-image{border-radius:15px!important}
  .property-page .food-inline-meals{grid-template-columns:1fr;gap:4px}
  .property-page .food-inline-meal{grid-template-columns:24px minmax(0,1fr);padding:6px 7px}
  .property-page .food-inline-meal-symbol{width:22px;height:22px}
  .property-page .food-inline-meal strong{font-size:10.5px!important}
}

@media (max-width:520px){
  .property-page .weekly-food-inline-v623{margin:5px 0 6px;padding:7px 8px 8px;border-radius:12px}
  .property-page .food-inline-hint{display:none}
  .property-page .food-inline-day{flex:0 0 50px;min-height:34px}
  .property-page .food-inline-panel{padding:6px 2px 2px}
}

@media (prefers-reduced-motion:reduce){
  .property-page .food-inline-panel.food-inline-animate{animation:none!important}
  .property-page .food-inline-day{transition:none!important}
}


/* PUBLIC UI V6.24 — Google Reviews trust card */
.property-page .google-reviews-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 24px;
  background:linear-gradient(135deg,#ffffff 0%,#f8fbfa 100%);
  border:1px solid #dce7e4;
}
.property-page .google-reviews-copy{max-width:760px}
.property-page .google-reviews-card h2{margin:4px 0 6px;font-size:26px;line-height:1.15}
.property-page .google-reviews-card p{margin:0;max-width:720px}
.property-page .google-reviews-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.property-page .google-reviews-actions .btn{white-space:nowrap}
@media (max-width:760px){
  .property-page .google-reviews-card{display:grid;gap:14px;padding:18px 16px}
  .property-page .google-reviews-card h2{font-size:21px}
  .property-page .google-reviews-card p{font-size:13px;line-height:1.55}
  .property-page .google-reviews-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .property-page .google-reviews-actions .btn{justify-content:center;padding:10px 12px;font-size:12px}
}


/* =========================================================
   V6.24.1 — calmer property hero + full-width weekly food
   Keeps V6.25 available for the server-rendered SEO release.
   ========================================================= */
@media (min-width:901px){
  .property-page .property-top{padding:18px 0 10px}
  .property-page .property-hero-v6{
    grid-template-columns:minmax(0,1.06fr) minmax(420px,.94fr)!important;
    gap:20px!important;
    align-items:start!important;
  }
  .property-page .property-gallery-v6{
    height:auto!important;
    overflow:visible!important;
    border-radius:22px!important;
  }
  .property-page .property-gallery-stage{
    height:500px!important;
    min-height:500px!important;
    max-height:500px!important;
    border-radius:22px!important;
    box-shadow:0 14px 32px rgba(25,55,48,.07)!important;
  }
  .property-page .property-gallery-stage img,
  .property-page .property-gallery-stage img.adaptive-detail-image{
    min-height:0!important;
    border-radius:21px!important;
  }
  .property-page .property-summary-v61{
    height:auto!important;
    min-height:500px!important;
    padding:22px 24px 18px!important;
    border:1px solid #dfe8e5!important;
    border-radius:22px!important;
    background:rgba(255,255,255,.96)!important;
    box-shadow:0 14px 32px rgba(25,55,48,.065)!important;
    overflow:visible!important;
  }
}

/* Give the hero one clear hierarchy instead of boxes inside boxes. */
.property-page .property-summary-heading{
  padding-bottom:14px!important;
  border-bottom:1px solid #e7eeec!important;
}
.property-page .property-summary-v61 h1{
  margin:7px 0 9px!important;
  font-size:clamp(29px,2.35vw,38px)!important;
  line-height:1.08!important;
  letter-spacing:-.03em!important;
}
.property-page .property-address{font-size:12px!important;line-height:1.5!important}
.property-page .property-rate-options-v621{
  margin:13px 0 10px!important;
  padding:0 0 12px!important;
  border:0!important;
  border-bottom:1px solid #e8eeec!important;
  border-radius:0!important;
  background:transparent!important;
}
.property-page .property-rate-options-v621 .property-rate-options-head{margin-bottom:8px!important}
.property-page .property-rate-options-v621 .property-rate-options-head span{
  color:#38554e!important;
  font-size:11px!important;
  font-weight:800!important;
}
.property-page .property-rate-pill-v621{
  min-height:58px!important;
  padding:10px 11px!important;
  border-color:#e2e9e6!important;
  border-radius:12px!important;
  box-shadow:none!important;
}
.property-page .property-rate-pill-v621:hover{
  transform:none!important;
  background:#f8fbfa!important;
  border-color:#cbdcd6!important;
  box-shadow:none!important;
}
.property-page .property-highlight-amenities{
  margin:10px 0 8px!important;
  gap:6px!important;
}
.property-page .property-highlight-amenity,
.property-page .property-highlight-more{
  min-height:28px!important;
  padding:4px 8px!important;
  font-size:8px!important;
  background:#f6faf8!important;
}
.property-page .property-summary-v61 .property-hours{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px 18px!important;
  margin:10px 0 0!important;
  padding:10px 0 0!important;
  border:0!important;
  border-top:1px solid #e8eeec!important;
  border-radius:0!important;
  background:transparent!important;
  font-size:8.5px!important;
}
.property-page .property-summary-v61 .property-hours span{white-space:nowrap}
.property-page .property-summary-v61 .property-hours strong{color:#34564e!important}

/* Primary actions are strong; utility actions stay quiet. */
.property-page .property-actions-v61{
  display:grid!important;
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:7px!important;
  margin-top:13px!important;
  padding-top:0!important;
}
.property-page .property-actions-v61 .btn{
  min-height:38px!important;
  border-radius:10px!important;
  font-size:9.2px!important;
  box-shadow:none!important;
}
.property-page .property-actions-v61 .action-main{grid-column:span 4!important}
.property-page .property-actions-v61 .action-main + .btn{grid-column:span 2!important}
.property-page .property-actions-v61 .btn:nth-child(n+3){grid-column:span 2!important;min-height:34px!important;background:#fff!important}
.property-page .property-direct-note{margin-top:8px!important;font-size:7.5px!important}

/* Weekly menu is a real page section, no longer squeezed into the hero. */
.property-page .property-food-section-v6241{
  padding:10px 0 20px!important;
  background:transparent;
}
.property-page .property-food-section-v6241 + .property-detail-content{padding-top:4px!important}
.property-page .property-food-section-v6241 .weekly-food-inline-v623{
  margin:0!important;
  padding:18px 20px 20px!important;
  border:1px solid #e7ded0!important;
  border-radius:20px!important;
  background:linear-gradient(135deg,#fffaf2 0%,#fffdf9 45%,#fff 100%)!important;
  box-shadow:0 10px 28px rgba(73,58,36,.055)!important;
}
.property-page .property-food-section-v6241 .food-inline-head{
  gap:11px!important;
  margin-bottom:14px!important;
}
.property-page .property-food-section-v6241 .food-inline-icon{
  width:40px!important;
  height:40px!important;
  flex-basis:40px!important;
  border-radius:12px!important;
}
.property-page .property-food-section-v6241 .food-inline-icon svg{width:20px!important;height:20px!important}
.property-page .property-food-section-v6241 .food-inline-title strong{
  font-size:20px!important;
  line-height:1.1!important;
  color:#263c36!important;
}
.property-page .property-food-section-v6241 .food-inline-title small{margin-top:3px!important;font-size:10px!important}
.property-page .property-food-section-v6241 .food-inline-hint{
  padding:5px 9px!important;
  font-size:9px!important;
}
.property-page .property-food-section-v6241 .food-inline-days{
  display:grid!important;
  grid-template-columns:repeat(7,minmax(0,1fr))!important;
  gap:8px!important;
  overflow:visible!important;
  padding:0 0 12px!important;
}
.property-page .property-food-section-v6241 .food-inline-day{
  min-width:0!important;
  min-height:52px!important;
  padding:7px 8px!important;
  border-radius:12px!important;
}
.property-page .property-food-section-v6241 .food-inline-day b{font-size:10.5px!important}
.property-page .property-food-section-v6241 .food-inline-day small{margin-top:2px!important;font-size:8px!important}
.property-page .property-food-section-v6241 .food-inline-panel{
  padding:14px 0 0!important;
  border-top:1px solid #eadfce!important;
  background:transparent!important;
}
.property-page .property-food-section-v6241 .food-inline-panel-title{margin-bottom:10px!important}
.property-page .property-food-section-v6241 .food-inline-panel-title b{font-size:14px!important}
.property-page .property-food-section-v6241 .food-inline-panel-title small{font-size:9px!important}
.property-page .property-food-section-v6241 .food-inline-panel-title>span{font-size:8px!important;padding:3px 7px!important}
.property-page .property-food-section-v6241 .food-inline-meals{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
}
.property-page .property-food-section-v6241 .food-inline-meal{
  min-height:86px!important;
  grid-template-columns:32px minmax(0,1fr)!important;
  gap:9px!important;
  padding:12px 13px!important;
  border-radius:13px!important;
  border-color:#ebe5db!important;
  box-shadow:0 3px 10px rgba(65,55,39,.03)!important;
}
.property-page .property-food-section-v6241 .food-inline-meal-symbol{
  width:30px!important;
  height:30px!important;
  border-radius:9px!important;
  font-size:14px!important;
}
.property-page .property-food-section-v6241 .food-inline-meal-label span{font-size:8.5px!important}
.property-page .property-food-section-v6241 .food-inline-meal-label small{font-size:8px!important}
.property-page .property-food-section-v6241 .food-inline-meal strong{
  margin-top:3px!important;
  font-size:12px!important;
  line-height:1.35!important;
}

@media(max-width:1040px) and (min-width:901px){
  .property-page .property-hero-v6{
    grid-template-columns:minmax(0,1fr) minmax(390px,.92fr)!important;
    gap:15px!important;
  }
  .property-page .property-gallery-stage{
    height:470px!important;
    min-height:470px!important;
    max-height:470px!important;
  }
  .property-page .property-summary-v61{min-height:470px!important;padding:18px 18px 15px!important}
  .property-page .property-summary-v61 h1{font-size:29px!important}
}

@media(max-width:900px){
  .property-page .property-hero-v6{align-items:start!important}
  .property-page .property-summary-v61{
    height:auto!important;
    min-height:0!important;
    padding:14px 12px 12px!important;
    border:1px solid #e1e9e6!important;
    border-radius:16px!important;
    background:#fff!important;
    box-shadow:0 8px 22px rgba(25,55,48,.05)!important;
  }
  .property-page .property-rate-options-v621{margin-top:10px!important;padding-bottom:10px!important}
  .property-page .property-summary-v61 .property-hours{gap:4px 10px!important}
  .property-page .property-actions-v61{grid-template-columns:1fr 1fr!important;gap:6px!important}
  .property-page .property-actions-v61 .action-main,
  .property-page .property-actions-v61 .action-main + .btn,
  .property-page .property-actions-v61 .btn:nth-child(n+3){grid-column:auto!important}
  .property-page .property-actions-v61 .action-main{grid-column:1/-1!important}
  .property-page .property-food-section-v6241{padding:6px 0 14px!important}
  .property-page .property-food-section-v6241 .weekly-food-inline-v623{padding:14px!important;border-radius:16px!important}
  .property-page .property-food-section-v6241 .food-inline-days{
    display:flex!important;
    gap:6px!important;
    overflow-x:auto!important;
    padding-bottom:10px!important;
  }
  .property-page .property-food-section-v6241 .food-inline-day{flex:0 0 62px!important;min-height:46px!important}
  .property-page .property-food-section-v6241 .food-inline-meals{grid-template-columns:1fr!important;gap:7px!important}
  .property-page .property-food-section-v6241 .food-inline-meal{min-height:0!important;padding:10px 11px!important}
}

@media(max-width:520px){
  .property-page .property-summary-v61 h1{font-size:23px!important}
  .property-page .property-food-section-v6241 .weekly-food-inline-v623{padding:12px 11px!important}
  .property-page .property-food-section-v6241 .food-inline-title strong{font-size:17px!important}
  .property-page .property-food-section-v6241 .food-inline-icon{width:34px!important;height:34px!important;flex-basis:34px!important}
  .property-page .property-actions-v61 .btn{font-size:8.5px!important}
}

/* =========================================================
   V6.24.2 — typography and spacing polish for property pages
   Raises undersized labels, evens hierarchy, and keeps the
   page readable without making the hero feel oversized.
   ========================================================= */
.property-page{
  font-size:15px;
  line-height:1.5;
}

.property-page .property-summary-v61 h1{
  font-size:clamp(32px,2.45vw,39px)!important;
  line-height:1.1!important;
  font-weight:650!important;
}
.property-page .kicker{
  font-size:11px!important;
  letter-spacing:.11em!important;
}
.property-page .property-address{
  font-size:14px!important;
  line-height:1.55!important;
}
.property-page .chip{
  font-size:11px!important;
  min-height:28px!important;
  padding:5px 10px!important;
}

.property-page .property-rate-options-v621 .property-rate-options-head span{
  font-size:12.5px!important;
}
.property-page .property-rate-pill-v621 .rate-share-name{
  font-size:12.5px!important;
  font-weight:700!important;
}
.property-page .property-rate-pill-v621 .rate-share-price{
  font-size:18px!important;
}
.property-page .property-rate-pill-v621 .rate-share-status{
  font-size:10.5px!important;
}
.property-page .property-highlight-amenity,
.property-page .property-highlight-more{
  min-height:30px!important;
  padding:5px 9px!important;
  font-size:10.5px!important;
}
.property-page .property-summary-v61 .property-hours{
  font-size:10.5px!important;
  line-height:1.45!important;
}
.property-page .property-actions-v61 .btn{
  font-size:11.5px!important;
  font-weight:750!important;
}
.property-page .property-direct-note{
  font-size:9.5px!important;
  line-height:1.4!important;
}

.property-page .section-head h2,
.property-page .content-card h2,
.property-page .location-section-head h2{
  font-size:26px!important;
  line-height:1.18!important;
  letter-spacing:-.018em!important;
}
.property-page .content-card p,
.property-page .content-card li,
.property-page .section-intro,
.property-page .muted{
  font-size:14px!important;
  line-height:1.6!important;
}

.property-page .property-food-section-v6241 .food-inline-title strong{
  font-size:22px!important;
}
.property-page .property-food-section-v6241 .food-inline-title small{
  font-size:11px!important;
}
.property-page .property-food-section-v6241 .food-inline-hint{
  font-size:10px!important;
}
.property-page .property-food-section-v6241 .food-inline-day b{
  font-size:12px!important;
}
.property-page .property-food-section-v6241 .food-inline-day small{
  font-size:9.5px!important;
}
.property-page .property-food-section-v6241 .food-inline-panel-title b{
  font-size:15px!important;
}
.property-page .property-food-section-v6241 .food-inline-panel-title small{
  font-size:10.5px!important;
}
.property-page .property-food-section-v6241 .food-inline-panel-title>span{
  font-size:9.5px!important;
}
.property-page .property-food-section-v6241 .food-inline-meal-label span{
  font-size:10px!important;
}
.property-page .property-food-section-v6241 .food-inline-meal-label small{
  font-size:9.5px!important;
}
.property-page .property-food-section-v6241 .food-inline-meal strong{
  font-size:13.5px!important;
  line-height:1.42!important;
}

.property-page .connectivity-section-head p{
  font-size:13.5px!important;
  line-height:1.55!important;
}
.property-page .connectivity-view-all{
  font-size:11.5px!important;
}
.property-page .connectivity-place-copy>small{
  font-size:9.5px!important;
}
.property-page .connectivity-place-copy>b{
  font-size:12px!important;
  line-height:1.3!important;
}
.property-page .connectivity-place-copy>em{
  font-size:10px!important;
  line-height:1.4!important;
}
.property-page .connectivity-place-meta strong,
.property-page .connectivity-place-meta small{
  font-size:10.5px!important;
}

.property-page .google-reviews-card h2{
  font-size:25px!important;
}
.property-page .google-reviews-card p{
  font-size:14px!important;
  line-height:1.6!important;
}
.property-page .google-reviews-actions .btn{
  font-size:12px!important;
}

@media(max-width:900px){
  .property-page{font-size:14.5px}
  .property-page .property-summary-v61 h1{
    font-size:clamp(28px,7.6vw,34px)!important;
  }
  .property-page .property-address{font-size:13.5px!important}
  .property-page .chip{font-size:10.5px!important}
  .property-page .property-rate-options-v621 .property-rate-options-head span{font-size:12px!important}
  .property-page .property-rate-pill-v621 .rate-share-name{font-size:11.5px!important}
  .property-page .property-rate-pill-v621 .rate-share-price{font-size:16px!important}
  .property-page .property-rate-pill-v621 .rate-share-status{font-size:10px!important}
  .property-page .property-highlight-amenity,
  .property-page .property-highlight-more{font-size:10px!important}
  .property-page .property-summary-v61 .property-hours{font-size:10px!important}
  .property-page .property-actions-v61 .btn{font-size:11px!important}
  .property-page .section-head h2,
  .property-page .content-card h2,
  .property-page .location-section-head h2{font-size:22px!important}
  .property-page .content-card p,
  .property-page .content-card li,
  .property-page .section-intro,
  .property-page .muted{font-size:13.5px!important}
  .property-page .property-food-section-v6241 .food-inline-title strong{font-size:20px!important}
  .property-page .property-food-section-v6241 .food-inline-day b{font-size:11.5px!important}
  .property-page .property-food-section-v6241 .food-inline-meal strong{font-size:13px!important}
  .property-page .connectivity-section-head p{font-size:13px!important}
  .property-page .connectivity-place-copy>b{font-size:11.5px!important}
}

@media(max-width:520px){
  .property-page .property-summary-v61 h1{
    font-size:28px!important;
    line-height:1.12!important;
  }
  .property-page .property-actions-v61 .btn{font-size:11px!important}
  .property-page .property-direct-note{font-size:9.5px!important}
  .property-page .property-food-section-v6241 .food-inline-title strong{font-size:19px!important}
  .property-page .google-reviews-card h2{font-size:21px!important}
}

/* =========================================================
   V6.24.4 — single amenities section + richer local SEO copy
   ========================================================= */
.property-page .living-local-card{
  position:relative;
  overflow:hidden;
}
.property-page .living-local-card::after{
  content:"";
  position:absolute;
  right:-42px;
  top:-54px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(36,93,72,.065),rgba(36,93,72,0) 70%);
  pointer-events:none;
}
.property-page .living-local-copy{
  display:grid;
  gap:10px;
  max-width:980px;
}
.property-page .living-local-copy p{
  margin:0!important;
}
.property-page .local-search-block{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(39,69,55,.10);
}
.property-page .local-search-block h3{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:.01em;
  color:#405048;
}
.property-page .local-search-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.property-page .local-search-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 11px;
  border:1px solid rgba(39,69,55,.12);
  border-radius:999px;
  background:rgba(247,249,247,.82);
  color:#43534b;
  font-size:12px;
  font-weight:650;
  line-height:1.25;
}

@media(max-width:900px){
  .property-page .living-local-copy{gap:8px}
  .property-page .local-search-block{margin-top:15px;padding-top:14px}
  .property-page .local-search-chip{font-size:11.5px;min-height:32px;padding:6px 10px}
}

@media(max-width:520px){
  .property-page .local-search-chips{
    display:flex;
    flex-wrap:nowrap;
    gap:7px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    padding-bottom:2px;
  }
  .property-page .local-search-chips::-webkit-scrollbar{display:none}
  .property-page .local-search-chip{
    width:auto;
    flex:0 0 auto;
    max-width:86vw;
    justify-content:flex-start;
    border-radius:999px;
    font-size:12px;
    padding:8px 11px;
    scroll-snap-align:start;
  }
}

/* =========================================================
   V6.24.6 — animated mobile quick-action dock
   Call · WhatsApp · Enquire · Directions
   ========================================================= */
@media(max-width:760px){
  body.property-page{
    padding-bottom:calc(94px + env(safe-area-inset-bottom,0px))!important;
  }

  /* The bottom dock is the single mobile contact surface. */
  .property-page .property-summary-v61 .property-actions-v61,
  .property-page .property-summary-v61 .property-direct-note,
  .property-page .site-header .nav{
    display:none!important;
  }

  .property-page .mobile-actions.mobile-contact-dock-v6246{
    position:fixed!important;
    z-index:1100!important;
    left:max(10px,env(safe-area-inset-left,0px))!important;
    right:max(10px,env(safe-area-inset-right,0px))!important;
    bottom:max(8px,env(safe-area-inset-bottom,0px))!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:4px!important;
    min-height:68px!important;
    padding:6px!important;
    border:1px solid rgba(207,221,217,.86)!important;
    border-radius:21px!important;
    background:rgba(250,252,251,.90)!important;
    box-shadow:0 16px 44px rgba(19,54,47,.20),0 2px 8px rgba(19,54,47,.07)!important;
    -webkit-backdrop-filter:blur(20px) saturate(1.18)!important;
    backdrop-filter:blur(20px) saturate(1.18)!important;
    animation:nestinMobileDockIn .46s cubic-bezier(.2,.75,.25,1) both;
  }

  .property-page .mobile-contact-action{
    position:relative;
    min-width:0;
    min-height:56px!important;
    margin:0!important;
    padding:5px 2px!important;
    border:0!important;
    border-radius:16px!important;
    background:transparent!important;
    color:#40544f!important;
    text-decoration:none!important;
    font:750 10.5px/1.05 system-ui,-apple-system,"Segoe UI",sans-serif!important;
    letter-spacing:-.01em;
    display:flex!important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
    transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
  }

  .property-page .mobile-contact-action::before{
    content:"";
    position:absolute;
    inset:3px;
    border-radius:14px;
    opacity:0;
    transform:scale(.92);
    background:rgba(28,87,72,.06);
    transition:opacity .18s ease,transform .18s ease;
    pointer-events:none;
  }
  .property-page .mobile-contact-action:active{transform:translateY(1px) scale(.965)}
  .property-page .mobile-contact-action:active::before{opacity:1;transform:scale(1)}

  .property-page .mobile-contact-icon{
    position:relative;
    z-index:1;
    width:29px;
    height:29px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#eef3f2;
    color:#47635c;
    box-shadow:inset 0 0 0 1px rgba(32,73,63,.05);
    transition:transform .2s ease,box-shadow .2s ease;
  }
  .property-page .mobile-contact-icon svg{width:16px;height:16px;display:block}
  .property-page .mobile-contact-action>span:last-child{position:relative;z-index:1;white-space:nowrap}

  .property-page .mobile-contact-call .mobile-contact-icon{background:#edf4f8;color:#315f78}
  .property-page .mobile-contact-whatsapp .mobile-contact-icon{background:#e9f8ee;color:#16874d}
  .property-page .mobile-contact-directions .mobile-contact-icon{background:#f3f0e7;color:#75612f}

  .property-page .mobile-contact-enquire{
    color:#fff!important;
    background:linear-gradient(145deg,#1b5548,#123d35)!important;
    box-shadow:0 7px 18px rgba(20,73,61,.20)!important;
  }
  .property-page .mobile-contact-enquire::before{background:rgba(255,255,255,.10)}
  .property-page .mobile-contact-enquire .mobile-contact-icon{
    background:rgba(255,255,255,.14);
    color:#fff;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.10);
    animation:nestinEnquireBreathe 3.8s ease-in-out 1.1s 2;
  }

  .property-page .mobile-contact-action.is-disabled{opacity:.35;pointer-events:none}

  /* Keep bottom-sheet enquiry above the dock and native safe area. */
  .property-page .enquiry-modal{z-index:1200!important}
  .property-page .enquiry-modal-panel{
    padding-bottom:calc(18px + env(safe-area-inset-bottom,0px))!important;
  }
}

@media(max-width:390px){
  .property-page .mobile-actions.mobile-contact-dock-v6246{left:7px!important;right:7px!important;gap:2px!important;padding:5px!important}
  .property-page .mobile-contact-action{font-size:9.8px!important}
  .property-page .mobile-contact-icon{width:27px;height:27px;border-radius:9px}
  .property-page .mobile-contact-icon svg{width:15px;height:15px}
}

@keyframes nestinMobileDockIn{
  from{opacity:0;transform:translateY(24px) scale(.975)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes nestinEnquireBreathe{
  0%,100%{transform:scale(1);box-shadow:inset 0 0 0 1px rgba(255,255,255,.10)}
  50%{transform:scale(1.08);box-shadow:inset 0 0 0 1px rgba(255,255,255,.18),0 0 0 5px rgba(255,255,255,.06)}
}

@media(prefers-reduced-motion:reduce){
  .property-page .mobile-actions.mobile-contact-dock-v6246,
  .property-page .mobile-contact-enquire .mobile-contact-icon{animation:none!important}
  .property-page .mobile-contact-action,
  .property-page .mobile-contact-icon,
  .property-page .mobile-contact-action::before{transition:none!important}
}


/* =========================================================
   V6.24.7 — premium colorful mobile contact dock
   Brighter action identity without making the page noisy
   ========================================================= */
@media(max-width:760px){
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    border:1px solid transparent!important;
    background:
      linear-gradient(rgba(255,255,255,.94),rgba(248,251,250,.92)) padding-box,
      linear-gradient(115deg,rgba(47,128,237,.34),rgba(32,181,107,.34),rgba(112,83,232,.32),rgba(234,122,44,.34)) border-box!important;
    box-shadow:
      0 18px 48px rgba(18,49,44,.22),
      0 4px 14px rgba(18,49,44,.08),
      inset 0 1px 0 rgba(255,255,255,.88)!important;
    -webkit-backdrop-filter:blur(24px) saturate(1.26)!important;
    backdrop-filter:blur(24px) saturate(1.26)!important;
  }

  .property-page .mobile-contact-action{
    min-height:57px!important;
    border-radius:15px!important;
    overflow:hidden;
    isolation:isolate;
    font-size:10.7px!important;
    font-weight:800!important;
    transition:transform .18s ease,box-shadow .2s ease,filter .2s ease!important;
    animation:nestinActionPop .44s cubic-bezier(.2,.75,.25,1) both;
  }
  .property-page .mobile-contact-action:nth-child(1){animation-delay:.08s}
  .property-page .mobile-contact-action:nth-child(2){animation-delay:.14s}
  .property-page .mobile-contact-action:nth-child(3){animation-delay:.20s}
  .property-page .mobile-contact-action:nth-child(4){animation-delay:.26s}

  .property-page .mobile-contact-action::before{
    inset:0!important;
    border-radius:15px!important;
    opacity:1!important;
    transform:none!important;
    z-index:-1;
  }

  .property-page .mobile-contact-call{
    color:#165487!important;
    box-shadow:inset 0 0 0 1px rgba(47,128,237,.10)!important;
  }
  .property-page .mobile-contact-call::before{
    background:linear-gradient(145deg,#f2f8ff,#e5f2ff)!important;
  }
  .property-page .mobile-contact-call .mobile-contact-icon{
    background:linear-gradient(145deg,#4b9aff,#246fd4)!important;
    color:#fff!important;
    box-shadow:0 6px 14px rgba(47,128,237,.27),inset 0 1px 0 rgba(255,255,255,.28)!important;
  }

  .property-page .mobile-contact-whatsapp{
    color:#116f43!important;
    box-shadow:inset 0 0 0 1px rgba(32,181,107,.11)!important;
  }
  .property-page .mobile-contact-whatsapp::before{
    background:linear-gradient(145deg,#f0fcf5,#e2f8eb)!important;
  }
  .property-page .mobile-contact-whatsapp .mobile-contact-icon{
    background:linear-gradient(145deg,#35c979,#169b58)!important;
    color:#fff!important;
    box-shadow:0 6px 14px rgba(32,181,107,.25),inset 0 1px 0 rgba(255,255,255,.28)!important;
    animation:nestinWhatsappGlow 3.8s ease-in-out 1.2s 2;
  }

  .property-page .mobile-contact-enquire{
    color:#fff!important;
    background:linear-gradient(120deg,#245f50,#207d68,#315fba,#7454dc)!important;
    background-size:220% 220%!important;
    box-shadow:0 9px 22px rgba(57,74,153,.28),inset 0 0 0 1px rgba(255,255,255,.15)!important;
    animation:nestinActionPop .44s cubic-bezier(.2,.75,.25,1) .20s both,nestinEnquireGradient 7s ease 1.1s infinite!important;
  }
  .property-page .mobile-contact-enquire::before{
    background:linear-gradient(155deg,rgba(255,255,255,.18),rgba(255,255,255,0) 58%)!important;
  }
  .property-page .mobile-contact-enquire .mobile-contact-icon{
    background:rgba(255,255,255,.18)!important;
    color:#fff!important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.16),0 5px 13px rgba(20,32,85,.18)!important;
  }

  .property-page .mobile-contact-directions{
    color:#9a4f19!important;
    box-shadow:inset 0 0 0 1px rgba(234,122,44,.12)!important;
  }
  .property-page .mobile-contact-directions::before{
    background:linear-gradient(145deg,#fff7ef,#ffecda)!important;
  }
  .property-page .mobile-contact-directions .mobile-contact-icon{
    background:linear-gradient(145deg,#f29b4d,#df6d29)!important;
    color:#fff!important;
    box-shadow:0 6px 14px rgba(234,122,44,.24),inset 0 1px 0 rgba(255,255,255,.28)!important;
  }

  .property-page .mobile-contact-action:active{
    transform:translateY(2px) scale(.96)!important;
    filter:saturate(1.08);
  }
  .property-page .mobile-contact-action:active .mobile-contact-icon{
    transform:scale(.92)!important;
  }
}

@media(max-width:390px){
  .property-page .mobile-contact-action{font-size:9.9px!important}
}

@keyframes nestinActionPop{
  from{opacity:0;transform:translateY(10px) scale(.92)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes nestinWhatsappGlow{
  0%,100%{transform:scale(1);box-shadow:0 6px 14px rgba(32,181,107,.25),inset 0 1px 0 rgba(255,255,255,.28)}
  50%{transform:scale(1.06);box-shadow:0 8px 18px rgba(32,181,107,.34),0 0 0 5px rgba(32,181,107,.08),inset 0 1px 0 rgba(255,255,255,.28)}
}
@keyframes nestinEnquireGradient{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}

@media(prefers-reduced-motion:reduce){
  .property-page .mobile-contact-action,
  .property-page .mobile-contact-whatsapp .mobile-contact-icon,
  .property-page .mobile-contact-enquire{
    animation:none!important;
  }
}

/* =========================================================
   V6.24.8 — mobile-first property polish
   Fixes horizontal overflow, pricing/amenity clipping and the
   oversized quick-action dock while preserving desktop layout.
   ========================================================= */
@media (max-width:760px){
  html,
  body.property-page{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
  }

  .property-page main,
  .property-page .wrap,
  .property-page .property-top,
  .property-page .property-hero-v6,
  .property-page .property-summary-v61,
  .property-page .property-detail-content,
  .property-page .detail-layout,
  .property-page .content-card,
  .property-page .amenity-grid{
    min-width:0!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }

  .property-page .wrap{
    width:calc(100% - 24px)!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  /* Property summary: compact, readable and free of nested-box clutter. */
  .property-page .property-summary-v61{
    padding:16px 14px 14px!important;
    border-radius:18px!important;
    box-shadow:0 8px 24px rgba(24,57,49,.055)!important;
  }
  .property-page .property-summary-heading{
    padding-bottom:13px!important;
  }
  .property-page .property-summary-v61 h1{
    margin:8px 0 9px!important;
    font-size:clamp(25px,7.2vw,30px)!important;
    line-height:1.08!important;
    letter-spacing:-.028em!important;
  }
  .property-page .kicker{
    font-size:10.5px!important;
    letter-spacing:.13em!important;
  }
  .property-page .chip{
    min-height:30px!important;
    padding:6px 11px!important;
    font-size:11px!important;
  }
  .property-page .property-address{
    display:flex!important;
    align-items:flex-start!important;
    gap:9px!important;
    font-size:14px!important;
    line-height:1.5!important;
    overflow-wrap:anywhere!important;
  }

  /* Mobile pricing: full-width rows instead of clipped mini cards. */
  .property-page .property-rate-options-v621{
    margin:14px 0 8px!important;
    padding:0 0 12px!important;
    overflow:visible!important;
  }
  .property-page .property-rate-options-v621 .property-rate-options-head{
    margin-bottom:9px!important;
  }
  .property-page .property-rate-options-v621 .property-rate-options-head span{
    font-size:13px!important;
  }
  .property-page .property-rate-pills-v621{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
    width:100%!important;
    overflow:visible!important;
  }
  .property-page .property-rate-pill-v621{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:58px!important;
    padding:10px 12px!important;
    border-radius:13px!important;
    grid-template-columns:minmax(0,1fr) auto!important;
  }
  .property-page .property-rate-pill-v621 .rate-share-name{
    overflow:visible!important;
    text-overflow:clip!important;
    white-space:normal!important;
    font-size:13px!important;
    line-height:1.2!important;
  }
  .property-page .property-rate-pill-v621 .rate-share-price{
    font-size:19px!important;
  }
  .property-page .property-rate-pill-v621 .rate-share-status{
    font-size:10.5px!important;
  }

  .property-page .property-summary-v61 .property-hours{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:6px!important;
    margin-top:8px!important;
    padding-top:11px!important;
    font-size:11px!important;
    line-height:1.4!important;
  }
  .property-page .property-summary-v61 .property-hours span{
    white-space:normal!important;
  }

  /* Dedicated amenity section must always fit the viewport. */
  .property-page .amenity-grid{
    width:100%!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:8px!important;
  }
  .property-page .amenity-card{
    width:100%!important;
    min-width:0!important;
    min-height:62px!important;
    padding:10px!important;
    gap:9px!important;
    border-radius:14px!important;
  }
  .property-page .amenity-icon{
    flex:0 0 34px!important;
    width:34px!important;
    height:34px!important;
  }
  .property-page .amenity-card span:last-child{
    min-width:0!important;
    font-size:12px!important;
    line-height:1.25!important;
    overflow-wrap:anywhere!important;
  }
  .property-page .section-head h2,
  .property-page .content-card h2,
  .property-page .location-section-head h2{
    font-size:24px!important;
    line-height:1.15!important;
  }
  .property-page .content-card{
    padding:16px!important;
    border-radius:16px!important;
  }

  /* Premium compact 4-action dock: all actions always visible. */
  body.property-page{
    padding-bottom:calc(86px + env(safe-area-inset-bottom,0px))!important;
  }
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    left:max(8px,env(safe-area-inset-left,0px))!important;
    right:max(8px,env(safe-area-inset-right,0px))!important;
    bottom:max(7px,env(safe-area-inset-bottom,0px))!important;
    width:auto!important;
    max-width:calc(100vw - 16px)!important;
    min-width:0!important;
    min-height:64px!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:3px!important;
    padding:5px!important;
    border-radius:19px!important;
    overflow:hidden!important;
    box-sizing:border-box!important;
    background:rgba(255,255,255,.94)!important;
    border:1px solid rgba(190,211,205,.8)!important;
    box-shadow:0 12px 34px rgba(18,49,44,.18),0 2px 8px rgba(18,49,44,.06)!important;
  }
  .property-page .mobile-contact-action{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:54px!important;
    padding:5px 1px!important;
    gap:3px!important;
    border-radius:14px!important;
    font-size:9.7px!important;
    font-weight:800!important;
    box-shadow:none!important;
  }
  .property-page .mobile-contact-action::before{
    inset:1px!important;
    border-radius:13px!important;
  }
  .property-page .mobile-contact-icon{
    width:27px!important;
    height:27px!important;
    border-radius:9px!important;
  }
  .property-page .mobile-contact-icon svg{
    width:15px!important;
    height:15px!important;
  }
  .property-page .mobile-contact-call::before{background:#f1f7ff!important}
  .property-page .mobile-contact-whatsapp::before{background:#eefaf3!important}
  .property-page .mobile-contact-directions::before{background:#fff7ec!important}
  .property-page .mobile-contact-enquire{
    background:linear-gradient(135deg,#176a57,#0e4f43)!important;
    animation:nestinActionPop .4s cubic-bezier(.2,.75,.25,1) .16s both!important;
  }
  .property-page .mobile-contact-whatsapp .mobile-contact-icon,
  .property-page .mobile-contact-enquire .mobile-contact-icon{
    animation:none!important;
  }
}

@media (max-width:380px){
  .property-page .wrap{width:calc(100% - 18px)!important}
  .property-page .property-summary-v61{padding:14px 12px 13px!important}
  .property-page .property-summary-v61 h1{font-size:24px!important}
  .property-page .amenity-grid{grid-template-columns:1fr!important}
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    left:5px!important;
    right:5px!important;
    max-width:calc(100vw - 10px)!important;
    gap:2px!important;
    padding:4px!important;
  }
  .property-page .mobile-contact-action{font-size:9px!important}
}

/* =========================================================
   V6.24.9 — mobile visual balance refinement
   Based on real-device screenshots: denser amenities, safer
   text wrapping, cleaner local-search chips and compact cards.
   ========================================================= */
@media (max-width:760px){
  .property-page .property-detail-content,
  .property-page .property-detail-content .wrap,
  .property-page .property-detail-content .detail-layout,
  .property-page .property-detail-content .detail-layout>div,
  .property-page .content-card,
  .property-page .content-card>*{
    min-width:0!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }

  .property-page .content-card p,
  .property-page .content-card li,
  .property-page .living-local-copy p,
  .property-page .connectivity-section-head p,
  .property-page .location-address-row p{
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  /* Amenities: keep two compact columns even on narrow phones. */
  .property-page .amenity-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }
  .property-page .amenity-card{
    min-height:54px!important;
    padding:8px 9px!important;
    gap:8px!important;
    border-radius:13px!important;
  }
  .property-page .amenity-icon{
    flex:0 0 30px!important;
    width:30px!important;
    height:30px!important;
    border-radius:9px!important;
  }
  .property-page .amenity-icon svg{
    width:17px!important;
    height:17px!important;
  }
  .property-page .amenity-card span:last-child{
    font-size:10.8px!important;
    line-height:1.18!important;
    font-weight:760!important;
  }
  .property-page #toggleAmenities{
    width:100%!important;
    min-height:38px!important;
    margin-top:10px!important;
    justify-content:center!important;
    font-size:11px!important;
    border-radius:12px!important;
  }

  /* About copy: concise and readable, no repeated amenity catalogue. */
  .property-page .about-property-copy{
    font-size:13.2px!important;
    line-height:1.58!important;
    color:#63736e!important;
  }

  /* Local SEO phrases remain visible but no longer run off-screen. */
  .property-page .local-search-chips{
    gap:7px!important;
    margin-right:-4px!important;
    padding:1px 4px 4px 0!important;
  }
  .property-page .local-search-chip{
    flex:0 0 min(78vw,285px)!important;
    max-width:min(78vw,285px)!important;
    min-height:42px!important;
    padding:8px 12px!important;
    align-items:center!important;
    border-radius:14px!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    font-size:11.3px!important;
    line-height:1.28!important;
    scroll-snap-align:start!important;
  }

  /* Connectivity carousel: one complete card plus a subtle next-card cue. */
  .property-page .connectivity-section-head{
    width:100%!important;
  }
  .property-page .connectivity-section-head p{
    width:100%!important;
    max-width:100%!important;
    font-size:12.2px!important;
    line-height:1.5!important;
  }
  .property-page .connectivity-grid{
    margin-right:-4px!important;
    padding-right:4px!important;
  }
  .property-page .connectivity-place{
    flex:0 0 min(84vw,300px)!important;
    min-height:70px!important;
    grid-template-columns:30px minmax(0,1fr) auto!important;
  }
  .property-page .connectivity-place-copy>b{
    white-space:normal!important;
    overflow:visible!important;
    text-overflow:clip!important;
    line-height:1.2!important;
  }
  .property-page .connectivity-place-copy>em{
    white-space:normal!important;
    overflow:visible!important;
    text-overflow:clip!important;
  }

  /* Location address must wrap inside the card rather than being clipped. */
  .property-page .location-address-row{
    display:grid!important;
    grid-template-columns:28px minmax(0,1fr)!important;
    align-items:start!important;
    width:100%!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }
  .property-page .location-address-row p{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0!important;
    font-size:12px!important;
    line-height:1.5!important;
  }

  /* Food days: better snap and smaller edge clipping on narrow screens. */
  .property-page .property-food-section-v6241 .food-inline-days{
    scroll-snap-type:x mandatory!important;
    scrollbar-width:none!important;
    padding-right:8px!important;
  }
  .property-page .property-food-section-v6241 .food-inline-day{
    flex:0 0 60px!important;
    scroll-snap-align:start!important;
  }

  /* Related property cards: reduce placeholder height on phones. */
  .property-page #relatedProperties .property-card{
    flex-basis:min(82vw,300px)!important;
  }
  .property-page #relatedProperties .property-card-media{
    aspect-ratio:auto!important;
    height:132px!important;
    min-height:132px!important;
  }
  .property-page #relatedProperties .photo-fallback{
    height:132px!important;
    min-height:132px!important;
  }

  /* Slightly slimmer quick-action dock so more content stays visible. */
  body.property-page{
    padding-bottom:calc(78px + env(safe-area-inset-bottom,0px))!important;
  }
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    min-height:58px!important;
    padding:4px!important;
    border-radius:18px!important;
  }
  .property-page .mobile-contact-action{
    min-height:49px!important;
    padding:4px 1px!important;
    font-size:9.2px!important;
  }
  .property-page .mobile-contact-icon{
    width:25px!important;
    height:25px!important;
  }
}

@media (max-width:380px){
  /* V6.24.8 stacked amenities at <=380px; keep the compact 2-column layout. */
  .property-page .amenity-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .property-page .amenity-card{
    min-height:52px!important;
    padding:7px 8px!important;
  }
  .property-page .amenity-card span:last-child{
    font-size:10.2px!important;
  }
  .property-page .local-search-chip{
    flex-basis:80vw!important;
    max-width:80vw!important;
  }
}


/* =========================================================
   V6.24.10 FINAL — real-device mobile finish
   One last mobile pass: no page-width drift, cleaner About,
   compact amenity control, contained food cards and a slimmer
   four-action contact dock. Desktop remains unchanged.
   ========================================================= */
@media (max-width:760px){
  html{
    width:100%!important;
    max-width:100%!important;
    overflow-x:clip!important;
  }
  body.property-page,
  .property-page #propertyApp,
  .property-page main,
  .property-page .section,
  .property-page .property-detail-content{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    overflow-x:clip!important;
  }

  .property-page .wrap{
    width:calc(100% - 20px)!important;
    max-width:calc(100% - 20px)!important;
    min-width:0!important;
    margin-left:auto!important;
    margin-right:auto!important;
    box-sizing:border-box!important;
  }

  .property-page .detail-layout,
  .property-page .detail-layout>div,
  .property-page .content-card,
  .property-page .weekly-food-inline-v623,
  .property-page .food-inline-panel,
  .property-page .food-inline-meals,
  .property-page .food-inline-meal,
  .property-page .living-local-copy,
  .property-page .connectivity-section,
  .property-page .location-section{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    box-sizing:border-box!important;
  }

  /* Cards should feel lighter on a phone and must not exceed viewport width. */
  .property-page .content-card{
    padding:15px 14px!important;
    border-radius:17px!important;
  }
  .property-page .content-card h2,
  .property-page .location-section-head h2{
    margin-top:0!important;
    font-size:23px!important;
    line-height:1.17!important;
    letter-spacing:-.025em!important;
  }
  .property-page .about-property-copy{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:9px 0 0!important;
    font-size:13.5px!important;
    line-height:1.58!important;
    white-space:normal!important;
    overflow-wrap:break-word!important;
    word-break:normal!important;
  }

  /* Keep the amenity grid compact; the expand control should not become a giant card. */
  .property-page .amenity-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }
  .property-page .amenity-card{
    min-width:0!important;
    min-height:52px!important;
    padding:8px!important;
  }
  .property-page #toggleAmenities{
    width:auto!important;
    max-width:100%!important;
    min-height:36px!important;
    margin:12px auto 0!important;
    padding:8px 14px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:999px!important;
    font-size:11px!important;
    line-height:1.1!important;
  }

  /* Food menu: only the day strip scrolls horizontally; meals always wrap within the card. */
  .property-page .property-food-section-v6241{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    overflow:hidden!important;
  }
  .property-page .property-food-section-v6241 .weekly-food-inline-v623{
    padding:14px 12px!important;
    overflow:hidden!important;
  }
  .property-page .property-food-section-v6241 .food-inline-head{
    display:grid!important;
    grid-template-columns:38px minmax(0,1fr) auto!important;
    gap:10px!important;
    align-items:center!important;
  }
  .property-page .property-food-section-v6241 .food-inline-title{
    min-width:0!important;
  }
  .property-page .property-food-section-v6241 .food-inline-title strong{
    font-size:20px!important;
    line-height:1.1!important;
  }
  .property-page .property-food-section-v6241 .food-inline-hint{
    white-space:nowrap!important;
    font-size:9px!important;
    padding:4px 7px!important;
  }
  .property-page .property-food-section-v6241 .food-inline-days{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    overscroll-behavior-inline:contain!important;
    -webkit-overflow-scrolling:touch!important;
    scroll-snap-type:x proximity!important;
    padding:0 3px 10px 0!important;
  }
  .property-page .property-food-section-v6241 .food-inline-meals{
    grid-template-columns:1fr!important;
    gap:8px!important;
  }
  .property-page .property-food-section-v6241 .food-inline-meal{
    grid-template-columns:34px minmax(0,1fr)!important;
    gap:10px!important;
    min-height:0!important;
    padding:11px!important;
    overflow:hidden!important;
  }
  .property-page .property-food-section-v6241 .food-inline-meal>div{
    min-width:0!important;
    max-width:100%!important;
  }
  .property-page .property-food-section-v6241 .food-inline-meal strong{
    display:block!important;
    max-width:100%!important;
    font-size:13px!important;
    line-height:1.38!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  /* Local-search and connectivity remain swipeable without widening the page. */
  .property-page .local-search-block,
  .property-page .local-search-chips,
  .property-page .connectivity-grid{
    min-width:0!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }
  .property-page .local-search-chips,
  .property-page .connectivity-grid{
    overflow-x:auto!important;
    overflow-y:hidden!important;
    overscroll-behavior-inline:contain!important;
    -webkit-overflow-scrolling:touch!important;
  }
  .property-page .local-search-chip{
    flex:0 0 min(76vw,270px)!important;
    max-width:min(76vw,270px)!important;
  }

  /* Final contact dock: attractive but no longer dominates the screen. */
  body.property-page{
    padding-bottom:calc(72px + env(safe-area-inset-bottom,0px))!important;
  }
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    left:max(7px,env(safe-area-inset-left,0px))!important;
    right:max(7px,env(safe-area-inset-right,0px))!important;
    bottom:max(6px,env(safe-area-inset-bottom,0px))!important;
    width:auto!important;
    max-width:calc(100vw - 14px)!important;
    min-height:54px!important;
    height:auto!important;
    gap:3px!important;
    padding:4px!important;
    border-radius:17px!important;
  }
  .property-page .mobile-contact-action{
    min-height:46px!important;
    height:46px!important;
    padding:3px 1px!important;
    gap:2px!important;
    border-radius:12px!important;
    font-size:9px!important;
    line-height:1!important;
  }
  .property-page .mobile-contact-action::before{
    inset:0!important;
    border-radius:12px!important;
  }
  .property-page .mobile-contact-icon{
    width:23px!important;
    height:23px!important;
    border-radius:8px!important;
  }
  .property-page .mobile-contact-icon svg{
    width:14px!important;
    height:14px!important;
  }
  .property-page .mobile-contact-action>span:last-child{
    font-size:9px!important;
    line-height:1!important;
  }
  .property-page .mobile-contact-enquire,
  .property-page .mobile-contact-whatsapp .mobile-contact-icon{
    animation:none!important;
  }
}

@media (max-width:380px){
  .property-page .wrap{
    width:calc(100% - 16px)!important;
    max-width:calc(100% - 16px)!important;
  }
  .property-page .content-card{padding:14px 12px!important}
  .property-page .content-card h2,
  .property-page .location-section-head h2{font-size:22px!important}
  .property-page .about-property-copy{font-size:13px!important}
  .property-page .amenity-card span:last-child{font-size:10px!important}
  .property-page .mobile-actions.mobile-contact-dock-v6246{
    left:5px!important;
    right:5px!important;
    max-width:calc(100vw - 10px)!important;
    gap:2px!important;
  }
  .property-page .mobile-contact-action,
  .property-page .mobile-contact-action>span:last-child{font-size:8.5px!important}
}

/* ============================================================
   V6.25.0 — property sticky header occlusion fix
   Prevent property content from showing through sticky header.
   ============================================================ */

.property-page .site-header{
  background:rgba(248,251,249,.98)!important;
  border-bottom:1px solid rgba(18,66,57,.06)!important;
  box-shadow:0 3px 14px rgba(25,55,48,.04)!important;
  backdrop-filter:blur(12px) saturate(120%)!important;
  -webkit-backdrop-filter:blur(12px) saturate(120%)!important;
}

.property-page .site-header .header-row{
  background:rgba(248,251,249,.98)!important;
  border-color:transparent!important;
  box-shadow:none!important;
}

/* Amenities expand control stays inside normal page flow. */
.property-page #toggleAmenities{
  position:relative!important;
  inset:auto!important;
  float:none!important;
  transform:none!important;
}

@media (prefers-color-scheme:dark){
  .property-page .site-header,
  .property-page .site-header .header-row{
    background:rgba(24,32,27,.98)!important;
  }
}

