:root{
  --hhs-blue:#0C6FD1;
  --hhs-blue-dark:#084E95;
  --hhs-sun:#f2a900;
  --hhs-ink:#1f2a3a;
  --hhs-muted:#617084;
  --hhs-line:#eadfca;
  --hhs-cream:#fbf5e8;
  --hhs-soft:#fffaf1;
  --hhs-white:#fff;
  --hhs-shadow:0 18px 45px rgba(31,42,58,.10);
}
.hhs-rls-search,
.hhs-rls-results-shell,
.hhs-rls-detail{
  font-family:Manrope,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--hhs-ink);
}
.hhs-rls-search{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  max-width:1180px;
  margin:30px auto 28px;
  padding:26px;
  border:1px solid var(--hhs-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fffaf1 0%,#fff 100%);
  box-shadow:0 14px 34px rgba(31,42,58,.06);
}
.hhs-rls-search label{
  display:block;
  font-size:14px;
  letter-spacing:.01em;
  font-weight:800;
  color:var(--hhs-ink);
}
.hhs-rls-search input,
.hhs-rls-search select{
  width:100%;
  box-sizing:border-box;
  margin-top:8px;
  padding:13px 14px;
  border:1px solid #dacfbf;
  border-radius:12px;
  background:#fff;
  color:var(--hhs-ink);
  font-size:15px;
  line-height:1.3;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.hhs-rls-search select{
  min-height:48px;
}
.hhs-rls-search input:focus,
.hhs-rls-search select:focus{
  outline:none;
  border-color:var(--hhs-blue);
  box-shadow:0 0 0 3px rgba(31,95,158,.12);
}
.hhs-rls-submit{
  display:flex;
  align-items:end;
}
.hhs-rls-submit button{
  width:100%;
  min-height:50px;
  padding:14px 22px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(31,95,158,.20);
  transition:transform .2s ease,box-shadow .2s ease;
}
.hhs-rls-submit button:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(31,95,158,.26);
}
.hhs-rls-results-shell{
  max-width:1180px;
  margin:0 auto 60px;
}
.hhs-rls-results-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin:10px 0 22px;
}
.hhs-rls-summary{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:var(--hhs-ink);
}
.hhs-rls-note{
  font-size:13px;
  color:var(--hhs-muted);
}
.hhs-rls-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}
.hhs-rls-card{
  overflow:hidden;
  background:var(--hhs-white);
  border:1px solid var(--hhs-line);
  border-radius:24px;
  box-shadow:0 10px 30px rgba(31,42,58,.07);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.hhs-rls-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--hhs-shadow);
  border-color:#e2d2b7;
}
.hhs-rls-card-image{
  position:relative;
  display:block;
  overflow:hidden;
  background:#f5f1e8;
}
.hhs-rls-card-image:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:42%;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.20));
  pointer-events:none;
}
.hhs-rls-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.hhs-rls-card:hover img{
  transform:scale(1.035);
}
.hhs-rls-card-body{
  padding:20px 21px 22px;
}
.hhs-rls-card-kicker{
  margin:0 0 8px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--hhs-sun);
}
.hhs-rls-card h3{
  font-size:21px;
  line-height:1.26;
  margin:0 0 10px;
  color:var(--hhs-ink);
}
.hhs-rls-card h3 a{
  text-decoration:none;
  color:inherit;
}
.hhs-rls-price{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  margin:0 0 14px;
  color:var(--hhs-blue-dark);
}
.hhs-rls-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}
.hhs-rls-card-meta span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border:1px solid var(--hhs-line);
  border-radius:999px;
  background:var(--hhs-soft);
  font-size:13px;
  color:var(--hhs-ink);
}
.hhs-rls-card-desc{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.55;
  color:var(--hhs-muted);
}
.hhs-rls-card-cta{
  display:inline-flex;
  align-items:center;
  color:var(--hhs-blue);
  font-weight:900;
  text-decoration:none;
}
.hhs-rls-card-cta:hover{
  color:var(--hhs-blue-dark);
}
.hhs-rls-pagination{
  display:flex;
  justify-content:center;
  gap:18px;
  align-items:center;
  margin:34px 0 0;
  font-weight:700;
}
.hhs-rls-pagination a{
  padding:10px 16px;
  border:1px solid var(--hhs-line);
  border-radius:999px;
  background:#fff;
  color:var(--hhs-blue-dark);
  text-decoration:none;
  box-shadow:0 8px 22px rgba(31,42,58,.06);
}
.hhs-rls-error,
.hhs-rls-empty{
  max-width:1180px;
  margin:24px auto;
  padding:22px 24px;
  border:1px solid var(--hhs-line);
  border-left:5px solid var(--hhs-sun);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(31,42,58,.05);
}
.hhs-rls-empty h3{
  margin:0 0 8px;
}
.hhs-rls-empty p{
  margin:0;
  color:var(--hhs-muted);
}
.hhs-rls-virtual-detail{
  background:#f7fbff;
  padding:0 0 60px;
}
.hhs-rls-detail{
  max-width:1180px;
  margin:0 auto;
  padding:34px 24px 60px;
}
.hhs-rls-detail-hero{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
  margin:0 0 26px;
}
.hhs-rls-back{
  display:inline-flex;
  margin:0 0 18px;
  color:var(--hhs-blue);
  text-decoration:none;
  font-weight:800;
}
.hhs-rls-detail-kicker{
  margin:0 0 8px;
  color:var(--hhs-sun);
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hhs-rls-detail h1{
  margin:0 0 12px;
  max-width:820px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--hhs-ink);
}
.hhs-rls-price-large{
  font-size:clamp(28px,4vw,42px);
  margin:0;
  color:var(--hhs-blue-dark);
}
.hhs-rls-ref-pill{
  white-space:nowrap;
  padding:10px 14px;
  border:1px solid var(--hhs-line);
  border-radius:999px;
  background:#fff;
  color:var(--hhs-muted);
  font-size:14px;
  font-weight:800;
}
.hhs-rls-detail-gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-auto-rows:210px;
  gap:12px;
  margin:0 0 24px;
}
.hhs-rls-detail-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(31,42,58,.08);
}
.hhs-rls-detail-gallery img.is-main{
  grid-row:span 2;
}
.hhs-rls-facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 28px;
}
.hhs-rls-facts span{
  border:1px solid var(--hhs-line);
  border-radius:999px;
  padding:10px 14px;
  background:#fff;
  color:var(--hhs-ink);
  box-shadow:0 8px 20px rgba(31,42,58,.04);
}
.hhs-rls-facts strong{
  color:var(--hhs-blue-dark);
}
.hhs-rls-detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:28px;
  align-items:start;
}
.hhs-rls-description-card,
.hhs-rls-enquiry-card{
  background:#fff;
  border:1px solid var(--hhs-line);
  border-radius:24px;
  box-shadow:0 12px 34px rgba(31,42,58,.07);
}
.hhs-rls-description-card{
  padding:32px;
}
.hhs-rls-description-card h2,
.hhs-rls-enquiry-card h2{
  margin:0 0 18px;
  color:var(--hhs-blue-dark);
  font-size:26px;
  line-height:1.2;
}
.hhs-rls-description{
  color:var(--hhs-ink);
  font-size:17px;
  line-height:1.75;
}
.hhs-rls-description p{
  margin:0 0 18px;
}
.hhs-rls-description p:last-child{
  margin-bottom:0;
}
.hhs-rls-enquiry-card{
  position:sticky;
  top:24px;
  padding:28px;
  background:linear-gradient(180deg,#fff 0%,#fffaf1 100%);
}
.hhs-rls-enquiry-card p{
  margin:0 0 18px;
  color:var(--hhs-muted);
  line-height:1.6;
}
.hhs-rls-enquiry-ref{
  padding:13px 14px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--hhs-line);
}
.hhs-rls-enquiry-button{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:50px;
  padding:13px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 14px 28px rgba(31,95,158,.22);
}
.hhs-rls-smallprint{
  margin-top:18px !important;
  font-size:12px;
  color:#7b8795 !important;
}
@media(max-width:980px){
  .hhs-rls-search,.hhs-rls-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hhs-rls-detail-layout{grid-template-columns:1fr}
  .hhs-rls-enquiry-card{position:static}
  .hhs-rls-detail-gallery{grid-template-columns:1fr 1fr;grid-auto-rows:190px}
}
@media(max-width:680px){
  .hhs-rls-search,.hhs-rls-grid{grid-template-columns:1fr}
  .hhs-rls-search{padding:18px;border-radius:18px;margin-left:16px;margin-right:16px}
  .hhs-rls-results-shell{padding:0 16px}
  .hhs-rls-results-top,.hhs-rls-detail-hero{display:block}
  .hhs-rls-note{margin-top:6px}
  .hhs-rls-detail{padding:24px 16px 46px}
  .hhs-rls-detail-gallery{grid-template-columns:1fr;grid-auto-rows:auto}
  .hhs-rls-detail-gallery img,.hhs-rls-detail-gallery img.is-main{height:auto;aspect-ratio:4/3;grid-row:auto}
  .hhs-rls-description-card,.hhs-rls-enquiry-card{padding:22px;border-radius:18px}
  .hhs-rls-detail h1{font-size:34px}
}

.hhs-rls-field-help{
  display:block;
  margin-top:7px;
  color:var(--hhs-muted);
  font-size:12px;
  font-weight:600;
  line-height:1.35;
}
.hhs-rls-multiselect{
  position:relative;
  margin-top:8px;
}
.hhs-rls-multiselect summary{
  list-style:none;
  width:100%;
  box-sizing:border-box;
  min-height:48px;
  padding:13px 42px 13px 14px;
  border:1px solid #dacfbf;
  border-radius:12px;
  background:#fff;
  color:var(--hhs-ink);
  font-size:15px;
  line-height:1.3;
  cursor:pointer;
  position:relative;
}
.hhs-rls-multiselect summary::-webkit-details-marker{display:none}
.hhs-rls-multiselect summary:after{
  content:"⌄";
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  color:var(--hhs-muted);
  font-size:18px;
}
.hhs-rls-multiselect[open] summary{
  border-color:var(--hhs-blue);
  box-shadow:0 0 0 3px rgba(31,95,158,.12);
}
.hhs-rls-multiselect-panel{
  position:absolute;
  z-index:40;
  top:calc(100% + 6px);
  left:0;
  right:0;
  max-height:360px;
  overflow:auto;
  padding:10px 0;
  border:1px solid #dacfbf;
  border-radius:14px;
  background:#fff;
  box-shadow:0 18px 45px rgba(31,42,58,.18);
}
.hhs-rls-location-group{
  padding:5px 14px 9px;
  border-bottom:1px solid #f1eadf;
}
.hhs-rls-location-group:last-child{border-bottom:0}
.hhs-rls-location-heading{
  margin:4px 0 6px;
  color:var(--hhs-ink);
  font-size:14px;
  line-height:1.25;
  font-weight:900;
}
.hhs-rls-check{
  display:flex!important;
  align-items:center;
  gap:9px;
  margin:0;
  padding:6px 0;
  font-size:14px!important;
  font-weight:500!important;
  letter-spacing:0!important;
  color:var(--hhs-ink)!important;
  cursor:pointer;
}
.hhs-rls-check input{
  width:auto!important;
  min-width:16px;
  height:16px;
  margin:0!important;
  padding:0!important;
  box-shadow:none!important;
}
.hhs-rls-check-all{font-weight:800!important}
.hhs-rls-check-child{padding-left:18px}
@media(max-width:680px){
  .hhs-rls-multiselect-panel{position:static;max-height:260px;margin-top:6px;}
}

.hhs-rls-multiselect-panel.is-disabled{
  color:var(--hhs-muted);
}
.hhs-rls-multiselect-panel.is-disabled:before{
  content:"Select a municipality first";
  display:block;
  padding:10px 14px;
  color:var(--hhs-muted);
  font-size:14px;
}
.hhs-rls-subarea-select .hhs-rls-check-child{
  padding-left:0;
}
.hhs-rls-search select option,
.hhs-rls-search select optgroup{
  font-family:Manrope,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

/* v0.2.14 refinements */
.hhs-rls-subarea-select summary{font-size:14px;font-weight:800;}
.hhs-rls-subarea-empty{padding:12px 14px;color:var(--hhs-muted);font-size:13px;font-weight:700;}
.hhs-rls-search .hhs-rls-multiselect{margin-top:8px;}
.hhs-rls-card-image-wrap{position:relative;overflow:hidden;background:#f5f1e8;}
.hhs-rls-location-badge{position:absolute;left:14px;bottom:14px;z-index:3;max-width:calc(100% - 72px);padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.92);color:var(--hhs-blue-dark);font-size:12px;font-weight:900;box-shadow:0 8px 20px rgba(0,0,0,.12);}
.hhs-rls-fav{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.75);background:rgba(255,255,255,.94);color:var(--hhs-blue-dark);font-weight:900;cursor:pointer;box-shadow:0 8px 22px rgba(31,42,58,.16);transition:transform .18s ease,background .18s ease,color .18s ease;}
.hhs-rls-fav:hover{transform:translateY(-1px);background:#fff;}
.hhs-rls-fav.is-saved{background:var(--hhs-sun);color:#fff;border-color:var(--hhs-sun);}
.hhs-rls-fav-card{position:absolute;z-index:4;right:14px;top:14px;width:42px;height:42px;border-radius:999px;font-size:22px;line-height:1;}
.hhs-rls-fav-detail{gap:8px;min-height:42px;padding:10px 14px;border-radius:999px;font-size:14px;}
.hhs-rls-card-meta-clean span{background:#fff;border-color:#e5d9c5;font-size:12.5px;box-shadow:0 3px 10px rgba(31,42,58,.04);}
.hhs-rls-card-meta-clean b{font-weight:900;color:var(--hhs-blue-dark);margin-right:3px;}
.hhs-rls-card-chips{display:flex;flex-wrap:wrap;gap:6px;margin:-4px 0 14px;}
.hhs-rls-card-chips span{font-size:11px;line-height:1.2;padding:5px 8px;border-radius:999px;background:#f1f6fb;color:var(--hhs-blue-dark);font-weight:800;}
.hhs-rls-detail-hero-card{padding:28px;border:1px solid var(--hhs-line);border-radius:26px;background:linear-gradient(180deg,#fff 0%,#fffaf1 100%);box-shadow:var(--hhs-shadow);}
.hhs-rls-detail-actions{display:flex;align-items:flex-end;flex-direction:column;gap:12px;}
.hhs-rls-detail-gallery a{display:block;min-width:0;min-height:0;}
.hhs-rls-detail-gallery a.is-main{grid-row:span 2;}
.hhs-rls-detail-gallery a img{width:100%;height:100%;object-fit:cover;display:block;border-radius:18px;box-shadow:0 12px 30px rgba(31,42,58,.08);}
.hhs-rls-facts-clean span{display:inline-flex;align-items:baseline;gap:7px;padding:11px 15px;background:#fff;}
.hhs-rls-facts-clean small{font-size:13px;color:var(--hhs-muted);font-weight:800;}
.hhs-rls-amenity-strip{display:flex;flex-wrap:wrap;gap:8px;margin:-10px 0 28px;}
.hhs-rls-amenity-strip span{padding:8px 11px;border-radius:999px;background:#eef6ff;color:var(--hhs-blue-dark);font-size:13px;font-weight:850;}
.hhs-rls-detail-main{display:flex;flex-direction:column;gap:24px;}
.hhs-rls-feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;border-top:1px solid #edf0f3;}
.hhs-rls-feature-grid div{padding:14px 0;border-bottom:1px solid #edf0f3;display:grid;grid-template-columns:150px minmax(0,1fr);gap:18px;}
.hhs-rls-feature-grid strong{color:var(--hhs-blue-dark);font-size:14px;}
.hhs-rls-feature-grid span{color:var(--hhs-muted);line-height:1.5;}
.hhs-rls-map-card iframe{width:100%;height:360px;border:0;border-radius:18px;background:#edf3f9;}
.hhs-rls-share{border-top:1px solid var(--hhs-line);margin-top:22px;padding-top:18px;display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.hhs-rls-share span{font-weight:900;color:var(--hhs-blue-dark);margin-right:4px;}
.hhs-rls-share a{display:inline-flex;align-items:center;justify-content:center;padding:7px 10px;border-radius:999px;background:#fff;border:1px solid var(--hhs-line);color:var(--hhs-blue-dark);text-decoration:none;font-size:12px;font-weight:900;}
.hhs-rls-forminator-wrap{margin-top:18px;}
.hhs-rls-forminator-wrap form{margin-top:0!important;}
@media(max-width:980px){.hhs-rls-feature-grid{grid-template-columns:1fr}.hhs-rls-detail-actions{align-items:flex-start}.hhs-rls-detail-gallery a.is-main{grid-row:auto}.hhs-rls-detail-gallery a{height:100%;}}
@media(max-width:680px){.hhs-rls-detail-hero-card{padding:22px}.hhs-rls-feature-grid div{grid-template-columns:1fr;gap:6px}.hhs-rls-location-badge{font-size:11px}.hhs-rls-fav-card{width:38px;height:38px}.hhs-rls-detail-gallery a img{height:auto;aspect-ratio:4/3}.hhs-rls-map-card iframe{height:260px}}

/* v0.2.15 visual and detail-page refinements */
.hhs-rls-detail h1{
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.hhs-rls-detail-hero-card{
  padding:24px 28px;
  margin-bottom:22px;
}
.hhs-rls-detail-kicker{
  margin-bottom:7px;
}
.hhs-rls-price-large{
  font-size:clamp(26px,3.2vw,36px);
}
.hhs-rls-card-meta-clean{
  flex-wrap:nowrap;
  gap:7px;
  overflow:hidden;
}
.hhs-rls-card-meta-clean span{
  min-width:0;
  white-space:nowrap;
  padding:6px 8px;
  gap:4px;
  font-size:12px;
  line-height:1;
}
.hhs-rls-card-meta-clean i{
  font-style:normal;
  font-size:13px;
  line-height:1;
}
.hhs-rls-facts-clean{
  flex-wrap:wrap;
  gap:9px;
}
.hhs-rls-facts-clean span{
  gap:6px;
  padding:9px 12px;
  line-height:1;
}
.hhs-rls-facts-clean i{
  font-style:normal;
  font-size:15px;
}
.hhs-rls-facts-clean small{
  font-size:12px;
}
.hhs-rls-carousel-gallery{
  display:block;
  margin:0 0 22px;
}
.hhs-rls-carousel-gallery .hhs-rls-main-photo{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  border-radius:24px;
  overflow:hidden;
  background:#f5f1e8;
  box-shadow:0 18px 45px rgba(31,42,58,.10);
}
.hhs-rls-carousel-gallery .hhs-rls-main-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:0;
  box-shadow:none;
}
.hhs-rls-thumb-strip{
  display:flex;
  gap:10px;
  margin-top:12px;
  padding:4px 2px 8px;
  overflow-x:auto;
  scrollbar-width:thin;
}
.hhs-rls-thumb{
  flex:0 0 92px;
  height:68px;
  padding:0;
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  opacity:.72;
  transition:opacity .18s ease,border-color .18s ease,transform .18s ease;
}
.hhs-rls-thumb:hover,
.hhs-rls-thumb.is-active{
  opacity:1;
  border-color:var(--hhs-sun);
  transform:translateY(-1px);
}
.hhs-rls-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hhs-rls-share-icons a{
  width:34px;
  height:34px;
  padding:0;
  border-radius:50%;
  font-size:14px;
  font-weight:900;
  text-transform:none;
}
.hhs-rls-share-icons a:hover{
  background:var(--hhs-blue-dark);
  color:#fff;
  border-color:var(--hhs-blue-dark);
}
.hhs-rls-epc-card{
  padding:26px 32px;
}
.hhs-rls-epc-badge{
  display:flex;
  align-items:center;
  gap:14px;
}
.hhs-rls-epc-badge span{
  display:inline-flex;
  width:58px;
  height:58px;
  border-radius:16px;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:950;
  color:#fff;
  background:linear-gradient(135deg,#41a85f,#f2a900);
  box-shadow:0 10px 24px rgba(31,42,58,.12);
}
.hhs-rls-epc-badge small{
  color:var(--hhs-muted);
  font-weight:750;
}
.hhs-rls-feature-grid div{
  grid-template-columns:130px minmax(0,1fr);
}
.hhs-rls-map-card iframe{
  min-height:380px;
}
.hhs-rls-subarea-empty{
  font-size:12px;
}
@media(max-width:980px){
  .hhs-rls-card-meta-clean{flex-wrap:wrap;}
  .hhs-rls-carousel-gallery .hhs-rls-main-photo{aspect-ratio:4/3;}
}
@media(max-width:680px){
  .hhs-rls-card-meta-clean{flex-wrap:wrap;}
  .hhs-rls-thumb{flex-basis:76px;height:58px;}
  .hhs-rls-detail h1{font-size:30px;}
  .hhs-rls-detail-hero-card{padding:20px;}
}


/* v0.2.16 polish */
.hhs-rls-card-chips,
.hhs-rls-amenity-strip,
.hhs-rls-detail-kicker{display:none!important;}
.hhs-rls-detail h1{
  font-size:clamp(28px,3.2vw,40px);
  line-height:1.12;
  letter-spacing:-.028em;
  max-width:760px;
}
.hhs-rls-detail-hero-card{padding:22px 28px;}
.hhs-rls-main-photo-wrap{position:relative;}
.hhs-rls-gallery-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.8);
  background:rgba(255,255,255,.92);
  color:var(--hhs-blue-dark);
  font-size:34px;
  line-height:1;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(31,42,58,.18);
}
.hhs-rls-gallery-prev{left:14px;}
.hhs-rls-gallery-next{right:14px;}
.hhs-rls-gallery-nav:hover{background:#fff;color:var(--hhs-blue);}
.hhs-rls-thumb-strip{scroll-behavior:smooth;}
.hhs-rls-facts-clean span,
.hhs-rls-card-meta-clean span{font-weight:850;}
.hhs-rls-card-meta-clean span{background:#fff;border-color:#eadfca;box-shadow:none;}
.hhs-rls-feature-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-top:1px solid #edf0f3;
}
.hhs-rls-feature-grid div{
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  gap:20px;
  padding:13px 0;
  border-bottom:1px solid #edf0f3;
}
.hhs-rls-feature-grid strong{font-size:13px;line-height:1.35;}
.hhs-rls-feature-grid span{font-size:15px;line-height:1.55;}
.hhs-rls-share-icons a[title="WhatsApp"]{font-size:11px;letter-spacing:.02em;}
@media(max-width:680px){
  .hhs-rls-detail h1{font-size:28px;}
  .hhs-rls-gallery-nav{width:38px;height:38px;font-size:28px;}
  .hhs-rls-feature-grid div{grid-template-columns:1fr;gap:5px;}
}

/* v0.2.17 debug + costs */
.hhs-rls-debug-panel summary{
  cursor:pointer;
  font-weight:900;
  color:var(--hhs-blue-dark);
  font-size:18px;
}
.hhs-rls-debug-panel pre{
  max-height:520px;
  overflow:auto;
  padding:16px;
  margin:14px 0 0;
  background:#101820;
  color:#e8f1f8;
  border-radius:12px;
  font-size:12px;
  line-height:1.45;
  white-space:pre-wrap;
}
.hhs-rls-cost-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.hhs-rls-cost-grid div{
  padding:14px 16px;
  border:1px solid #eadfca;
  border-radius:16px;
  background:#fffdf8;
}
.hhs-rls-cost-grid strong,
.hhs-rls-cost-grid span{
  display:block;
}
.hhs-rls-cost-grid strong{
  color:var(--hhs-blue-dark);
  margin-bottom:4px;
}
.hhs-rls-cost-grid span{
  color:var(--hhs-muted);
  font-weight:850;
}
.hhs-rls-gallery-nav{pointer-events:auto!important;}
.hhs-rls-main-photo{position:relative;}
@media(max-width:680px){.hhs-rls-cost-grid{grid-template-columns:1fr;}}


/* v0.2.18: softer sub-area placeholder and running-cost note */
.hhs-rls-subarea-select summary{font-weight:500!important;color:var(--hhs-ink);}
.hhs-rls-subarea-empty{font-weight:500!important;}
.hhs-rls-cost-grid small{display:block;margin-top:5px;color:var(--hhs-muted);font-size:11px;font-weight:600;line-height:1.3;}

/* v0.2.20 mobile/detail CTA and map refinements */
.hhs-rls-quick-cta,
.hhs-rls-inline-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:12px 0 22px;
}
.hhs-rls-secondary-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 18px;
  border-radius:999px;
  border:1px solid var(--hhs-line);
  background:#fff;
  color:var(--hhs-blue-dark);
  text-decoration:none;
  font-weight:900;
  box-shadow:0 8px 20px rgba(31,42,58,.06);
}
.hhs-rls-secondary-button:hover{background:#f7fbff;}
.hhs-rls-inline-cta{margin-top:-4px;margin-bottom:24px;}
.hhs-rls-inline-cta .hhs-rls-enquiry-button{width:auto;}
.hhs-rls-map-card iframe{display:block;width:100%;height:390px;border:0;border-radius:18px;background:#edf3f9;}

@media(max-width:680px){
  .hhs-rls-detail{padding-left:14px;padding-right:14px;}
  .hhs-rls-detail-hero-card{
    padding:18px 18px 20px;
    border-radius:22px;
    margin-bottom:18px;
  }
  .hhs-rls-detail h1{
    font-size:clamp(24px,8vw,30px)!important;
    line-height:1.1;
    letter-spacing:-.025em;
    margin:10px 0 10px;
  }
  .hhs-rls-price-large{
    font-size:clamp(24px,7vw,30px);
    margin-bottom:10px;
  }
  .hhs-rls-back{font-size:14px;}
  .hhs-rls-ref-pill{font-size:13px;padding:9px 14px;}
  .hhs-rls-fav-detail{min-height:40px;padding:9px 14px;}
  .hhs-rls-carousel-gallery{margin-bottom:14px;}
  .hhs-rls-carousel-gallery .hhs-rls-main-photo{border-radius:20px;aspect-ratio:4/3;}
  .hhs-rls-thumb-strip{gap:8px;margin-top:10px;padding-bottom:8px;}
  .hhs-rls-thumb{flex:0 0 70px;height:52px;border-radius:13px;}
  .hhs-rls-facts-clean{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin:12px 0 14px;
  }
  .hhs-rls-facts-clean span{
    min-width:0;
    width:100%;
    justify-content:center;
    padding:9px 8px;
    gap:4px;
    white-space:nowrap;
    font-size:13px;
  }
  .hhs-rls-facts-clean i{font-size:13px;}
  .hhs-rls-facts-clean strong{font-size:18px;line-height:1;}
  .hhs-rls-facts-clean small{font-size:11px;white-space:nowrap;}
  .hhs-rls-quick-cta{
    display:grid;
    grid-template-columns:1fr;
    margin:10px 0 18px;
  }
  .hhs-rls-quick-cta .hhs-rls-enquiry-button,
  .hhs-rls-quick-cta .hhs-rls-secondary-button,
  .hhs-rls-inline-cta .hhs-rls-enquiry-button{
    width:100%;
    min-height:46px;
    font-size:14px;
  }
  .hhs-rls-description-card,
  .hhs-rls-enquiry-card{
    padding:20px 18px!important;
    border-radius:22px!important;
  }
  .hhs-rls-description-card h2,
  .hhs-rls-enquiry-card h2{
    font-size:clamp(24px,7vw,30px)!important;
    line-height:1.18;
  }
  .hhs-rls-description{
    font-size:16px;
    line-height:1.65;
  }
  .hhs-rls-feature-grid strong{font-size:14px;}
  .hhs-rls-feature-grid span{font-size:16px;line-height:1.45;}
  .hhs-rls-cost-grid{gap:10px;}
  .hhs-rls-cost-grid div{padding:14px 16px;}
  .hhs-rls-epc-badge{align-items:flex-start;}
  .hhs-rls-map-card iframe{height:300px;}
  html{scroll-behavior:smooth;}
  #hhs-rls-enquiry{scroll-margin-top:90px;}
}


/* v0.2.21 compact detail header and coordinate/map fixes */
.hhs-rls-detail-meta-line{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:10px;}
.hhs-rls-detail-hero-card{grid-template-columns:1fr!important;gap:12px!important;}
.hhs-rls-detail-hero-card .hhs-rls-detail-actions{display:none!important;}
.hhs-rls-detail h1{max-width:820px;}
.hhs-rls-results-top{align-items:flex-end;}

@media(max-width:680px){
  .hhs-rls-detail-hero-card{padding:18px 18px 18px!important;margin:12px 0 16px!important;border-radius:22px!important;}
  .hhs-rls-detail h1{font-size:clamp(22px,6.2vw,26px)!important;line-height:1.08!important;margin:12px 0 8px!important;letter-spacing:-.03em!important;}
  .hhs-rls-price-large{font-size:clamp(24px,6.6vw,28px)!important;margin:0!important;line-height:1.05!important;}
  .hhs-rls-detail-meta-line{margin-top:10px;gap:8px;}
  .hhs-rls-ref-pill{font-size:12.5px!important;padding:8px 12px!important;}
  .hhs-rls-fav-detail{font-size:13px!important;min-height:38px!important;padding:8px 12px!important;}
  .hhs-rls-back{font-size:13px!important;}
  .hhs-rls-carousel-gallery .hhs-rls-main-photo{aspect-ratio:4/3!important;}
  .hhs-rls-facts-clean{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:6px!important;}
  .hhs-rls-facts-clean span{display:grid!important;grid-template-columns:1fr!important;justify-items:center!important;align-content:center!important;gap:1px!important;padding:7px 4px!important;min-height:54px!important;border-radius:16px!important;}
  .hhs-rls-facts-clean i{font-size:12px!important;line-height:1!important;}
  .hhs-rls-facts-clean strong{font-size:15px!important;line-height:1!important;}
  .hhs-rls-facts-clean small{font-size:9.5px!important;line-height:1.05!important;white-space:normal!important;text-align:center!important;}
  .hhs-rls-description-card h2,.hhs-rls-enquiry-card h2{font-size:clamp(22px,6.2vw,28px)!important;}
  .hhs-rls-search{padding:16px!important;gap:12px!important;}
  .hhs-rls-search label{font-size:13px!important;}
  .hhs-rls-search input,.hhs-rls-search select,.hhs-rls-multiselect summary{min-height:46px!important;font-size:15px!important;}
  .hhs-rls-results-top{display:block!important;margin:22px 0 14px!important;}
  .hhs-rls-summary{font-size:22px!important;line-height:1.15!important;}
  .hhs-rls-note{font-size:14px!important;margin-top:6px!important;}
  .hhs-rls-card-body{padding:18px!important;}
  .hhs-rls-card h3{font-size:22px!important;line-height:1.12!important;}
  .hhs-rls-card-meta-clean{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:6px!important;}
  .hhs-rls-card-meta-clean span{justify-content:center!important;min-width:0!important;padding:6px 4px!important;font-size:11px!important;white-space:nowrap!important;}
  .hhs-rls-card-desc{font-size:14px!important;line-height:1.5!important;}
}


/* v0.2.22 brand colour, tighter mobile hero and compact homepage search */
.hhs-rls-quick-search{
  display:grid;
  grid-template-columns:1.2fr 1.2fr .75fr .9fr auto;
  gap:10px;
  align-items:end;
  max-width:980px;
  margin:18px auto;
  padding:16px;
  border:1px solid var(--hhs-line);
  border-radius:20px;
  background:rgba(255,255,255,.94);
  box-shadow:0 16px 34px rgba(31,42,58,.10);
  font-family:Manrope,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}
.hhs-rls-quick-search label{display:block;font-size:12px;font-weight:900;color:var(--hhs-ink);}
.hhs-rls-quick-search label span{display:block;margin:0 0 6px;}
.hhs-rls-quick-search input,.hhs-rls-quick-search select{width:100%;min-height:42px;box-sizing:border-box;border:1px solid #dacfbf;border-radius:12px;background:#fff;color:var(--hhs-ink);font-size:14px;padding:10px 12px;}
.hhs-rls-quick-search button{min-height:42px;border:0;border-radius:12px;padding:10px 18px;background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));color:#fff;font-weight:900;cursor:pointer;box-shadow:0 10px 20px rgba(12,111,209,.20);}

@media(max-width:680px){
  .hhs-rls-detail-hero-card{padding:15px 16px!important;margin:10px 0 14px!important;border-radius:20px!important;}
  .hhs-rls-detail h1{font-size:clamp(20px,5.5vw,24px)!important;line-height:1.08!important;margin:9px 0 7px!important;}
  .hhs-rls-price-large{font-size:clamp(22px,6vw,26px)!important;}
  .hhs-rls-detail-meta-line{margin-top:8px!important;gap:7px!important;}
  .hhs-rls-ref-pill,.hhs-rls-fav-detail{min-height:34px!important;font-size:12px!important;padding:7px 10px!important;}
  .hhs-rls-fav-detail{font-size:0!important;width:38px!important;min-width:38px!important;padding:0!important;border-radius:999px!important;}
  .hhs-rls-fav-detail::after{content:'♡';font-size:18px;line-height:1;}
  .hhs-rls-fav-detail.is-saved::after{content:'♥';}
  .hhs-rls-back{font-size:12.5px!important;margin-bottom:4px!important;}
  .hhs-rls-carousel-gallery .hhs-rls-main-photo{border-radius:18px!important;}
  .hhs-rls-facts-clean{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .hhs-rls-facts-clean span{min-height:48px!important;padding:6px 3px!important;border-radius:14px!important;}
  .hhs-rls-facts-clean strong{font-size:14px!important;}
  .hhs-rls-facts-clean small{font-size:8.8px!important;}
  .hhs-rls-search{margin-top:14px!important;}
  .hhs-rls-quick-search{grid-template-columns:1fr 1fr;gap:10px;margin:14px auto;padding:14px;}
  .hhs-rls-quick-search label{font-size:12px;}
  .hhs-rls-quick-search button{grid-column:1/-1;width:100%;}
}

/* v0.2.23 dedicated compact search-results page */
.hhs-rls-compact-results{
  max-width:1180px;
  margin:30px auto 60px;
  padding:0 24px;
  font-family:Manrope,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--hhs-ink);
}
.hhs-rls-results-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin:0 0 18px;
  padding:22px 24px;
  border:1px solid var(--hhs-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fff 0%,#fffaf1 100%);
  box-shadow:0 12px 30px rgba(31,42,58,.06);
}
.hhs-rls-results-eyebrow{
  margin:0 0 5px;
  color:var(--hhs-sun);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:950;
}
.hhs-rls-results-header h1{
  margin:0 0 7px;
  color:var(--hhs-ink);
  font-size:clamp(28px,4vw,42px);
  line-height:1.08;
  letter-spacing:-.03em;
}
.hhs-rls-active-filters{
  margin:0;
  color:var(--hhs-muted);
  font-size:15px;
  line-height:1.45;
  font-weight:650;
}
.hhs-rls-results-controls{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:flex-end;
  gap:10px;
  min-width:320px;
}
.hhs-rls-refine-panel{position:relative;}
.hhs-rls-refine-panel summary{
  list-style:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(12,111,209,.18);
}
.hhs-rls-refine-panel summary::-webkit-details-marker{display:none;}
.hhs-rls-refine-body{
  position:absolute;
  z-index:80;
  right:0;
  top:calc(100% + 10px);
  width:min(980px,calc(100vw - 32px));
}
.hhs-rls-refine-body .hhs-rls-search{
  margin:0;
  box-shadow:0 22px 55px rgba(31,42,58,.22);
}
.hhs-rls-sort-form label{display:block;font-size:12px;font-weight:900;color:var(--hhs-ink);}
.hhs-rls-sort-form label span{display:block;margin:0 0 5px;color:var(--hhs-muted);}
.hhs-rls-sort-form select{
  min-height:44px;
  min-width:190px;
  padding:10px 13px;
  border:1px solid #dacfbf;
  border-radius:12px;
  background:#fff;
  color:var(--hhs-ink);
  font-size:14px;
}
.hhs-rls-results-top-compact{margin:12px 0 18px;}
@media(max-width:760px){
  .hhs-rls-compact-results{padding:0 16px;margin-top:18px;}
  .hhs-rls-results-header{display:block;padding:18px;border-radius:20px;}
  .hhs-rls-results-header h1{font-size:28px;}
  .hhs-rls-active-filters{font-size:14px;}
  .hhs-rls-results-controls{min-width:0;display:grid;grid-template-columns:1fr;gap:10px;margin-top:14px;justify-content:stretch;}
  .hhs-rls-refine-panel summary{width:100%;min-height:46px;box-sizing:border-box;}
  .hhs-rls-refine-body{position:static;width:auto;margin-top:10px;}
  .hhs-rls-refine-body .hhs-rls-search{margin:0!important;padding:14px!important;border-radius:18px!important;}
  .hhs-rls-sort-form select{width:100%;}
  .hhs-rls-results-top-compact{margin:18px 0 14px!important;}
}


/* v0.2.24 compact results refine panel improvements */
.hhs-rls-compact-results .hhs-rls-results-header{
  position:relative;
  overflow:visible;
}
.hhs-rls-compact-results:has(.hhs-rls-refine-panel[open]) .hhs-rls-results-top-compact{
  margin-top:320px;
}
.hhs-rls-refine-panel[open] summary{
  background:#fff;
  color:var(--hhs-blue);
  border:1px solid rgba(12,111,209,.28);
  box-shadow:0 8px 18px rgba(12,111,209,.10);
}
.hhs-rls-refine-panel[open] summary::after{
  content:"  ×";
  font-weight:950;
  margin-left:6px;
}
.hhs-rls-refine-body{
  max-height:none;
}
.hhs-rls-refine-body .hhs-rls-search{
  padding:18px!important;
  border-radius:22px!important;
  background:rgba(255,252,246,.98)!important;
}
.hhs-rls-refine-body .hhs-rls-search label{
  font-size:12px!important;
  margin-bottom:2px!important;
}
.hhs-rls-refine-body .hhs-rls-search select,
.hhs-rls-refine-body .hhs-rls-search input{
  min-height:42px!important;
  font-size:14px!important;
}
.hhs-rls-refine-body .hhs-rls-search button[type="submit"]{
  min-height:52px!important;
}
.hhs-rls-results-top-compact{
  transition:margin-top .18s ease;
}
@media (min-width: 901px){
  .hhs-rls-refine-body{
    right:0;
    top:calc(100% + 14px);
    width:min(900px,calc(100vw - 64px));
  }
  .hhs-rls-refine-body .hhs-rls-search{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:14px 16px!important;
  }
}
@media (max-width: 900px){
  .hhs-rls-compact-results:has(.hhs-rls-refine-panel[open]) .hhs-rls-results-top-compact{
    margin-top:0;
  }
  .hhs-rls-results-controls{
    min-width:0;
  }
  .hhs-rls-refine-panel[open] summary{
    margin-bottom:0;
  }
  .hhs-rls-refine-body .hhs-rls-search{
    box-shadow:0 12px 26px rgba(31,42,58,.10)!important;
  }
}


/* v0.2.25 results refine polish: slimmer button, true inline expansion, no overlap */
.hhs-rls-compact-results .hhs-rls-results-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:end;
  column-gap:12px;
  row-gap:14px;
}
.hhs-rls-compact-results .hhs-rls-results-controls{
  display:contents;
  min-width:0;
}
.hhs-rls-compact-results .hhs-rls-refine-panel{
  display:contents;
  position:static;
}
.hhs-rls-compact-results .hhs-rls-refine-panel summary{
  grid-column:2;
  min-height:44px;
  height:44px;
  padding:0 16px;
  border:1px solid rgba(12,111,209,.28);
  border-radius:12px;
  background:#fff;
  color:var(--hhs-blue);
  box-shadow:none;
  white-space:nowrap;
}
.hhs-rls-compact-results .hhs-rls-refine-panel:not([open]) summary{
  background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 16px rgba(12,111,209,.12);
}
.hhs-rls-compact-results .hhs-rls-sort-form{
  grid-column:3;
}
.hhs-rls-compact-results .hhs-rls-refine-body{
  grid-column:1 / -1;
  position:static!important;
  width:100%!important;
  max-width:none!important;
  margin:2px 0 0!important;
  right:auto!important;
  top:auto!important;
  z-index:auto!important;
}
.hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search{
  margin:0!important;
  box-shadow:0 16px 36px rgba(31,42,58,.10)!important;
}
.hhs-rls-compact-results:has(.hhs-rls-refine-panel[open]) .hhs-rls-results-top-compact{
  margin-top:18px!important;
}
.hhs-rls-refine-body .hhs-rls-sort-field{
  display:none!important;
}
.hhs-rls-sort-form select{
  min-height:44px;
  height:44px;
  border-radius:12px;
}
@media (max-width: 760px){
  .hhs-rls-compact-results .hhs-rls-results-header{
    display:block;
  }
  .hhs-rls-compact-results .hhs-rls-results-controls{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:14px;
  }
  .hhs-rls-compact-results .hhs-rls-refine-panel{
    display:block;
  }
  .hhs-rls-compact-results .hhs-rls-refine-panel summary{
    width:100%;
    height:48px;
    min-height:48px;
    border-radius:999px;
  }
  .hhs-rls-compact-results .hhs-rls-sort-form{
    grid-column:auto;
  }
  .hhs-rls-compact-results .hhs-rls-refine-body{
    margin-top:10px!important;
  }
}


/* v0.2.26 results refine alignment and municipality map fallback polish */
.hhs-rls-compact-results .hhs-rls-results-header > div:first-child{
  grid-column:1;
  grid-row:1;
  align-self:end;
}
.hhs-rls-compact-results .hhs-rls-refine-panel summary{
  grid-column:2;
  grid-row:1;
  align-self:end;
  justify-self:end;
}
.hhs-rls-compact-results .hhs-rls-sort-form{
  grid-column:3;
  grid-row:1;
  align-self:end;
}
.hhs-rls-compact-results .hhs-rls-refine-body{
  grid-column:1 / -1;
  grid-row:2;
}
.hhs-rls-compact-results .hhs-rls-results-header:has(.hhs-rls-refine-panel[open]){
  align-items:start;
}
.hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search{
  width:100%;
  max-width:none;
}
.hhs-rls-refine-body .hhs-rls-submit button,
.hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search button[type="submit"]{
  min-height:44px!important;
  height:44px!important;
  padding:9px 16px!important;
  border-radius:12px!important;
  font-size:14px!important;
  box-shadow:0 8px 16px rgba(12,111,209,.13)!important;
}
.hhs-rls-refine-body .hhs-rls-submit{
  align-items:end!important;
}
@media (min-width:901px){
  .hhs-rls-compact-results .hhs-rls-results-header{
    grid-template-columns:minmax(260px,1fr) auto minmax(190px,210px);
  }
  .hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media (max-width:760px){
  .hhs-rls-compact-results .hhs-rls-results-header > div:first-child,
  .hhs-rls-compact-results .hhs-rls-refine-panel summary,
  .hhs-rls-compact-results .hhs-rls-sort-form,
  .hhs-rls-compact-results .hhs-rls-refine-body{
    grid-column:auto;
    grid-row:auto;
  }
  .hhs-rls-refine-body .hhs-rls-submit button,
  .hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search button[type="submit"]{
    height:48px!important;
    min-height:48px!important;
    border-radius:999px!important;
  }
}


/* v0.2.27 requested refinements: compact refine panel, cleaner mobile cards and tighter single listing hero */
.hhs-rls-compact-results .hhs-rls-results-header{
  padding:20px 24px!important;
  gap:12px!important;
}
.hhs-rls-compact-results .hhs-rls-refine-panel summary,
.hhs-rls-compact-results .hhs-rls-sort-form select{
  height:40px!important;
  min-height:40px!important;
  border-radius:11px!important;
  font-size:13px!important;
}
.hhs-rls-compact-results .hhs-rls-refine-panel summary{
  padding:0 14px!important;
  box-shadow:0 6px 14px rgba(12,111,209,.10)!important;
}
.hhs-rls-compact-results .hhs-rls-sort-form select{
  padding:8px 12px!important;
}
.hhs-rls-compact-results .hhs-rls-refine-body{
  margin-top:0!important;
}
.hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search{
  padding:14px!important;
  gap:12px 14px!important;
  border-radius:18px!important;
  box-shadow:0 12px 28px rgba(31,42,58,.09)!important;
}
.hhs-rls-refine-body .hhs-rls-search label{
  font-size:11.5px!important;
  line-height:1.25!important;
}
.hhs-rls-refine-body .hhs-rls-search select,
.hhs-rls-refine-body .hhs-rls-search input,
.hhs-rls-refine-body .hhs-rls-multiselect summary{
  min-height:38px!important;
  height:38px!important;
  padding:9px 12px!important;
  border-radius:11px!important;
  font-size:13px!important;
}
.hhs-rls-refine-body .hhs-rls-submit button,
.hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search button[type="submit"]{
  min-height:40px!important;
  height:40px!important;
  padding:8px 14px!important;
  border-radius:11px!important;
  font-size:13px!important;
  box-shadow:0 6px 14px rgba(12,111,209,.12)!important;
}
.hhs-rls-refine-body .hhs-rls-submit{
  align-items:end!important;
}
.hhs-rls-card h3{
  font-size:20px;
  line-height:1.22;
}
.hhs-rls-card-meta-clean span{
  font-size:11.5px;
  padding:5px 7px;
}
.hhs-rls-detail-hero-card{
  padding:20px 24px!important;
  margin-bottom:18px!important;
}
.hhs-rls-detail h1{
  font-size:clamp(26px,2.8vw,36px)!important;
  line-height:1.1!important;
}
.hhs-rls-price-large{
  font-size:clamp(24px,2.8vw,32px)!important;
}
.hhs-rls-detail-meta-line{
  margin-top:8px!important;
}
.hhs-rls-quick-cta{
  margin-top:8px!important;
}

@media (max-width:760px){
  .hhs-rls-compact-results .hhs-rls-results-header{
    padding:18px!important;
  }
  .hhs-rls-compact-results .hhs-rls-refine-panel summary,
  .hhs-rls-compact-results .hhs-rls-sort-form select{
    min-height:44px!important;
    height:44px!important;
  }
  .hhs-rls-compact-results .hhs-rls-refine-body .hhs-rls-search{
    padding:13px!important;
    gap:10px!important;
  }
  .hhs-rls-card h3{
    font-size:20px!important;
    line-height:1.12!important;
  }
}
@media (max-width:680px){
  .hhs-rls-detail-hero-card{
    padding:13px 15px!important;
    margin:8px 0 12px!important;
    border-radius:18px!important;
  }
  .hhs-rls-detail h1{
    font-size:clamp(19px,5.2vw,22px)!important;
    line-height:1.08!important;
    margin:7px 0 7px!important;
  }
  .hhs-rls-price-large{
    font-size:clamp(21px,5.8vw,24px)!important;
  }
  .hhs-rls-detail-meta-line{
    margin-top:7px!important;
  }
  .hhs-rls-ref-pill{
    display:none!important;
  }
  .hhs-rls-fav-detail{
    min-height:34px!important;
    width:36px!important;
    min-width:36px!important;
  }
  .hhs-rls-facts-clean{
    margin-top:9px!important;
  }
  .hhs-rls-quick-cta{
    margin:8px 0 16px!important;
  }
  .hhs-rls-card h3{
    font-size:19px!important;
  }
  .hhs-rls-card-body{
    padding:16px!important;
  }
  .hhs-rls-card-meta-clean span{
    font-size:10.5px!important;
    padding:5px 3px!important;
  }
}


/* v0.2.28 slimmer results header and reliable mobile save heart */
.hhs-rls-results-header h1{margin-top:0!important;}
@media(max-width:680px){
  .hhs-rls-results-header{padding-top:18px!important;}
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail{
    width:40px!important;
    min-width:40px!important;
    height:40px!important;
    min-height:40px!important;
    padding:0!important;
    border-radius:999px!important;
    font-size:20px!important;
    line-height:1!important;
    background:#fff!important;
    color:var(--hhs-blue-dark)!important;
    border:1px solid rgba(229,217,197,.95)!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail.is-saved{
    background:#fff!important;
    color:var(--hhs-sun)!important;
    border-color:rgba(243,177,0,.65)!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail::after{content:none!important;display:none!important;}
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail .hhs-rls-fav-text{display:none!important;}
}


/* v0.2.29 favourite state and tighter mobile detail header */
.hhs-rls-fav.is-saved,
.hhs-rls-fav[aria-pressed="true"]{
  background:#fff5f5!important;
  color:#d93025!important;
  border-color:rgba(217,48,37,.32)!important;
}
.hhs-rls-fav-card.is-saved,
.hhs-rls-fav-card[aria-pressed="true"]{
  background:#fff!important;
  color:#d93025!important;
  border-color:rgba(217,48,37,.34)!important;
}
@media(max-width:680px){
  .hhs-rls-detail-hero-card{
    position:relative!important;
    padding:14px 68px 14px 15px!important;
    min-height:0!important;
  }
  .hhs-rls-detail-meta-line{
    position:absolute!important;
    right:14px!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    margin:0!important;
    display:block!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-ref-pill{
    display:none!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail{
    width:42px!important;
    min-width:42px!important;
    height:42px!important;
    min-height:42px!important;
    padding:0!important;
    border-radius:999px!important;
    font-size:20px!important;
    line-height:1!important;
    background:#fff!important;
    color:var(--hhs-blue-dark)!important;
    border:1px solid rgba(229,217,197,.95)!important;
    box-shadow:0 10px 22px rgba(31,42,58,.14)!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail.is-saved,
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail[aria-pressed="true"]{
    background:#fff5f5!important;
    color:#d93025!important;
    border-color:rgba(217,48,37,.34)!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail::after{content:none!important;display:none!important;}
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail .hhs-rls-fav-text{display:none!important;}
  .hhs-rls-detail h1{
    font-size:clamp(18px,5vw,21px)!important;
    margin:6px 0 6px!important;
  }
  .hhs-rls-price-large{
    font-size:clamp(20px,5.5vw,23px)!important;
  }
}


/* v0.2.30: clearer favourite active state and remove redundant mobile read-details CTA */
.hhs-rls-heart-symbol{
  display:inline-block!important;
  line-height:1!important;
  color:inherit!important;
  font-weight:900!important;
}
.hhs-rls-fav.is-saved .hhs-rls-heart-symbol,
.hhs-rls-fav[aria-pressed="true"] .hhs-rls-heart-symbol,
.hhs-rls-fav-card.is-saved .hhs-rls-heart-symbol,
.hhs-rls-fav-card[aria-pressed="true"] .hhs-rls-heart-symbol,
.hhs-rls-fav-detail.is-saved .hhs-rls-heart-symbol,
.hhs-rls-fav-detail[aria-pressed="true"] .hhs-rls-heart-symbol{
  color:#d93025!important;
}
.hhs-rls-fav-card.is-saved,
.hhs-rls-fav-card[aria-pressed="true"],
.hhs-rls-fav-detail.is-saved,
.hhs-rls-fav-detail[aria-pressed="true"]{
  background:#fff5f5!important;
  border-color:rgba(217,48,37,.42)!important;
  color:#d93025!important;
}
@media(max-width:680px){
  .hhs-rls-quick-cta{
    margin:10px 0 18px!important;
  }
  .hhs-rls-quick-cta .hhs-rls-enquiry-button{
    width:100%!important;
  }
}


/* v0.2.31: detail favourite active state and aligned card CTAs */
.hhs-rls-grid{
  align-items:stretch!important;
}
.hhs-rls-card{
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
}
.hhs-rls-card-image-wrap{
  flex:0 0 auto!important;
}
.hhs-rls-card-body{
  display:flex!important;
  flex-direction:column!important;
  flex:1 1 auto!important;
}
.hhs-rls-card-desc{
  flex:0 0 auto!important;
}
.hhs-rls-card-cta{
  margin-top:auto!important;
  padding-top:8px!important;
}
.hhs-rls-fav-detail.is-saved,
.hhs-rls-fav-detail[aria-pressed="true"]{
  background:#fff5f5!important;
  border-color:rgba(217,48,37,.48)!important;
  color:#d93025!important;
}
.hhs-rls-fav-detail.is-saved .hhs-rls-heart-symbol,
.hhs-rls-fav-detail[aria-pressed="true"] .hhs-rls-heart-symbol,
.hhs-rls-fav-detail .hhs-rls-heart-symbol[data-state="saved"]{
  color:#d93025!important;
  opacity:1!important;
}
@media(max-width:680px){
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail.is-saved,
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail[aria-pressed="true"]{
    background:#fff5f5!important;
    border-color:rgba(217,48,37,.50)!important;
    color:#d93025!important;
  }
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail.is-saved .hhs-rls-heart-symbol,
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail[aria-pressed="true"] .hhs-rls-heart-symbol,
  .hhs-rls-detail-meta-line .hhs-rls-fav-detail .hhs-rls-heart-symbol[data-state="saved"]{
    color:#d93025!important;
  }
}

/* v0.2.32: advanced feature filters, shortcode helper page and matched sub-area control sizing */
.hhs-rls-search .hhs-rls-multiselect,
.hhs-rls-search .hhs-rls-multiselect summary,
.hhs-rls-search .hhs-rls-subarea-select,
.hhs-rls-search .hhs-rls-subarea-select summary{
  width:100%!important;
  box-sizing:border-box!important;
}
.hhs-rls-search .hhs-rls-multiselect{
  margin-top:8px!important;
}
.hhs-rls-search .hhs-rls-multiselect summary{
  min-height:48px!important;
  height:48px!important;
  padding:0 14px!important;
  border:1px solid #dacfbf!important;
  border-radius:12px!important;
  background:#fff!important;
  color:var(--hhs-ink)!important;
  font-size:15px!important;
  font-weight:500!important;
  line-height:1.2!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}
.hhs-rls-advanced-filters{
  grid-column:1/-1;
  border:1px solid rgba(234,223,202,.95);
  border-radius:16px;
  background:rgba(255,255,255,.62);
  padding:0;
  overflow:hidden;
}
.hhs-rls-advanced-filters > summary{
  list-style:none;
  cursor:pointer;
  min-height:44px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--hhs-blue-dark);
  font-size:14px;
  font-weight:900;
}
.hhs-rls-advanced-filters > summary::-webkit-details-marker{display:none;}
.hhs-rls-advanced-filters > summary:after{content:'+';font-size:18px;line-height:1;}
.hhs-rls-advanced-filters[open] > summary:after{content:'–';}
.hhs-rls-advanced-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:0 16px 16px;
}
.hhs-rls-advanced-grid fieldset{
  margin:0;
  padding:14px;
  border:1px solid rgba(234,223,202,.95);
  border-radius:14px;
  background:#fff;
}
.hhs-rls-advanced-grid legend{
  padding:0 6px;
  color:var(--hhs-blue-dark);
  font-weight:900;
  font-size:13px;
}
.hhs-rls-advanced-grid .hhs-rls-check{
  margin:7px 0;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:var(--hhs-muted);
}
.hhs-rls-advanced-grid input[type="checkbox"]{
  width:15px!important;
  height:15px!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  flex:0 0 auto;
}
.hhs-rls-advanced-note{
  margin:0;
  padding:0 16px 16px;
  color:var(--hhs-muted);
  font-size:12px;
  font-weight:600;
}
.hhs-rls-advanced-page{
  max-width:1180px;
  margin:0 auto 70px;
  font-family:Manrope,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--hhs-ink);
}
.hhs-rls-advanced-hero{
  margin:32px auto 0;
  padding:34px;
  border:1px solid var(--hhs-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fffaf1 0%,#fff 100%);
  box-shadow:var(--hhs-shadow);
  text-align:center;
}
.hhs-rls-eyebrow{
  margin:0 0 10px;
  color:var(--hhs-blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.hhs-rls-advanced-hero h1{
  margin:0 0 14px;
  color:var(--hhs-blue-dark);
  font-size:clamp(32px,4vw,50px);
  line-height:1.08;
}
.hhs-rls-advanced-hero p:last-child{
  max-width:820px;
  margin:0 auto;
  color:var(--hhs-muted);
  font-size:18px;
  line-height:1.7;
}
.hhs-rls-search-helper-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin:34px auto 0;
}
.hhs-rls-search-helper-grid section{
  border:1px solid var(--hhs-line);
  border-radius:20px;
  background:#fff;
  padding:22px;
  box-shadow:0 12px 30px rgba(31,42,58,.06);
}
.hhs-rls-search-helper-grid h2{
  margin:0 0 12px;
  color:var(--hhs-blue-dark);
  font-size:22px;
  line-height:1.2;
}
.hhs-rls-search-helper-grid ul{
  margin:0;
  padding:0;
  list-style:none;
}
.hhs-rls-search-helper-grid li{margin:9px 0;}
.hhs-rls-search-helper-grid a{
  color:var(--hhs-blue);
  font-weight:800;
  text-decoration:none;
}
.hhs-rls-search-helper-grid a:hover{text-decoration:underline;}
.hhs-rls-helper-cta{
  background:linear-gradient(180deg,#fffaf1 0%,#fff 100%)!important;
}
.hhs-rls-helper-cta p{
  color:var(--hhs-muted);
  line-height:1.65;
}
.hhs-rls-helper-cta > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--hhs-blue),var(--hhs-blue-dark));
  color:#fff!important;
  text-decoration:none!important;
}
@media(max-width:900px){
  .hhs-rls-advanced-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .hhs-rls-search-helper-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:680px){
  .hhs-rls-search .hhs-rls-multiselect summary{
    min-height:46px!important;
    height:46px!important;
    font-size:15px!important;
  }
  .hhs-rls-advanced-filters > summary{min-height:42px;}
  .hhs-rls-advanced-grid{grid-template-columns:1fr;padding:0 12px 12px;}
  .hhs-rls-advanced-grid fieldset{padding:12px;}
  .hhs-rls-advanced-page{margin-left:16px;margin-right:16px;}
  .hhs-rls-advanced-hero{padding:24px 18px;}
  .hhs-rls-advanced-hero p:last-child{font-size:16px;}
  .hhs-rls-search-helper-grid{grid-template-columns:1fr;}
}
