/* Sommerhus desktop-mockup (kun desktop — ingen mobil-breakpoints) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ocean: #1A6B72;
  --teal: #27a799;
  --teal-dark: #1f8c85;
  --teal-bg: #f0faf8;
  --text: #1C1C1E;
  --text-2: #374151;
  --muted: #6B7280;
  --border: #E8EAED;
  --border-light: #F1F3F5;
  --white: #FFFFFF;
  --warm-bg: #FAFAF8;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --nav-h: 56px;
  --subnav-h: 48px;
  --max-w: 1200px;
  --gold: #F59E0B;
  --green: #16A34A;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.page-demo {
  background: #ffffff;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  min-height: var(--nav-h);
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  max-width: min(200px, 28vw);
}
.nav-logo img {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav-center::-webkit-scrollbar { display: none; }
.nav-center a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-center a:hover { color: var(--ocean); }
.nav-center a.nav-bold {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-inspo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-inspo__chev {
  color: #94a3b8;
  flex-shrink: 0;
  opacity: 0.9;
}
.nav-inspo:hover .nav-inspo__chev { color: var(--ocean); }
.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-icon:hover { background: var(--border-light); }
.nav-icon svg { width: 20px; height: 20px; }
a.nav-icon {
  text-decoration: none;
  color: inherit;
}
.nav-icon--portal:hover {
  background: var(--border-light);
  color: var(--ocean);
}
.nav-icon--portal:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-find {
  background: var(--white);
  border: 2px solid var(--text);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}
.nav-find:hover {
  background: var(--text);
  color: var(--white);
}

.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 32px; }
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--muted);
}
.breadcrumb-bar a { color: var(--muted); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--ocean); }
.breadcrumb-bar .sep { color: #CBD5E1; font-size: 10px; }
.breadcrumb-bar .current { color: var(--text); font-weight: 600; }

.gallery-wrapper { padding: 0 32px; max-width: var(--max-w); margin: 0 auto; }
.gallery-heading-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.ghb-left { flex: 1; min-width: 0; }
.ghb-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.ghb-meta { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.ghb-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--ocean); font-weight: 600; }
.ghb-rating-stars { color: var(--gold); font-size: 12px; }
.ghb-dot { color: #D1D5DB; }
.ghb-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.gh-action {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.gh-action:hover { border-color: var(--teal); color: var(--teal); }

.grid-gallery {
  display: grid;
  grid-template-columns: 45fr 30fr 25fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 12px 40px -16px rgba(0, 0, 0, 0.1);
}
.grid-gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.grid-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.grid-gallery-item:hover img { transform: scale(1.04); }
.grid-gallery-item--0 { grid-column: 1; grid-row: 1 / 3; }
.grid-gallery-item--1 { grid-column: 2; grid-row: 1 / 3; }
.grid-gallery-item--2 { grid-column: 3; grid-row: 1; }
.grid-gallery-item--3 { grid-column: 3; grid-row: 2; }
.gallery-overlay-btns { position: absolute; bottom: 14px; right: 14px; display: flex; gap: 6px; }
.gallery-overlay-btn {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: inherit;
}
.photo-counter {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  cursor: pointer;
  font-family: inherit;
}
.photo-counter svg { width: 15px; height: 15px; }
.gallery-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f5b067;
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gallery-discount svg { width: 15px; height: 15px; }
.gallery-spacer { height: 24px; }

.section-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 150;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 0 32px;
  height: var(--subnav-h);
  transition: box-shadow 0.3s;
}
.section-nav.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }
.section-nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; height: 100%; }
.section-nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav-links::-webkit-scrollbar { display: none; }
.snav-link {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 15px;
  height: var(--subnav-h);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-family: inherit;
  flex-shrink: 0;
}
.snav-link:hover { color: var(--teal); }
.snav-link.active { color: var(--teal); border-bottom-color: var(--teal); }
.snav-cta {
  margin-left: auto;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 9px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  flex-shrink: 0;
}
.snav-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.snav-cta:hover { background: var(--teal-dark); }
.snav-price { font-size: 12px; font-weight: 400; opacity: 0.85; }

.main-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 36px 32px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.left-col { display: flex; flex-direction: column; }
.right-col__sticky { display: flex; flex-direction: column; gap: 16px; }

.content-section { padding: 30px 0; border-bottom: 1px solid var(--border); }
.content-section:last-child { border-bottom: none; }
.content-section--lead {
  padding-top: 0;
}
.content-section h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--warm-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.amenity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 114, 0.1);
  border-color: rgba(39, 167, 153, 0.35);
}
.amenity-icon-svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--ocean); }

.description-text { font-size: 14.5px; color: var(--text-2); line-height: 1.8; }
.description-collapsed { max-height: 120px; overflow: hidden; position: relative; }
.description-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}
.description-expanded::after { display: none; }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-bg);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  padding: 10px 20px;
  font-family: inherit;
  transition: all 0.2s;
}
.read-more-btn:hover { background: var(--teal); color: var(--white); }

.details-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.details-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13.5px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--muted); }
.detail-value { font-weight: 500; color: var(--text); }
.detail-value.yes { color: var(--green); }
.detail-value.no { color: var(--muted); font-weight: 400; }

.review-summary {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.review-big-score { text-align: center; flex-shrink: 0; }
.review-big-num { font-size: 48px; font-weight: 800; color: var(--ocean); line-height: 1; }
.review-big-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin: 6px 0; }
.review-big-sub { font-size: 12px; color: var(--muted); }
.review-empty { font-size: 14px; color: var(--muted); padding: 8px 0 16px; }
.review-disclaimer {
  font-size: 12.5px;
  color: var(--muted);
  margin: -6px 0 18px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid var(--ocean);
}
.review-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.review-bar-label { width: 65px; color: var(--muted); flex-shrink: 0; }
.review-bar-track { flex: 1; height: 6px; background: var(--border-light); border-radius: 4px; overflow: hidden; }
.review-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ocean), var(--teal)); border-radius: 4px; }
.review-bar-val { width: 32px; font-weight: 700; color: var(--text); font-size: 12.5px; text-align: right; }
.review-card { padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.review-card:last-of-type { border-bottom: none; }
.reviewer-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-date { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--gold); font-size: 13px; margin-left: auto; font-weight: 600; white-space: nowrap; }
.review-text { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.sos-reply {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--teal-bg);
  border-left: 3px solid var(--ocean);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.sos-reply strong { color: var(--ocean); display: block; margin-bottom: 4px; font-size: 12px; }

.tips-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 4px; }
.tips-sub { font-size: 13.5px; color: var(--muted); }
.tip-item { padding: 18px 0; border-top: 1px solid var(--border-light); }
.tip-item:first-of-type { margin-top: 12px; }
.tip-item__author { font-size: 14px; font-weight: 700; color: var(--text); }
.tip-item__date { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.tip-item__text { font-size: 14px; color: var(--text-2); line-height: 1.7; }

#house-map {
  height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 107, 114, 0.12);
  z-index: 1;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.area-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  text-align: left;
}
.faq-question:hover { color: var(--ocean); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer-inner { padding: 0 0 16px; font-size: 13.5px; color: var(--text-2); line-height: 1.7; }

.notice-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #78350f;
  line-height: 1.6;
}

.booking-card {
  background: linear-gradient(165deg, #ffffff 0%, #fafcfb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 48px -12px rgba(15, 23, 42, 0.12),
    var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--teal), var(--ocean));
  opacity: 0.85;
}
.price-line { display: flex; align-items: baseline; gap: 5px; margin-bottom: 2px; }
.price-from { font-size: 12px; color: var(--muted); }
.price-amount { font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.price-unit { font-size: 13px; color: var(--muted); }
.cheapest-week {
  font-size: 12px;
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.date-picker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 8px; }
.date-field {
  border: 1.5px solid var(--border);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.date-field:first-child { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.date-field:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.date-field:hover { border-color: var(--ocean); background: var(--teal-bg); }
.field-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 600;
}
.field-value { font-size: 14px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.field-value.set { color: var(--text); }
.guests-field {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.book-btn {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.25s ease, transform 0.15s ease;
}
.book-btn:hover { background: var(--teal-dark); box-shadow: 0 6px 20px rgba(39, 167, 153, 0.35); }
.book-btn:active { transform: scale(0.99); }
.no-charge-note { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.booking-divider { border: none; border-top: 1px solid var(--border-light); margin: 14px 0; }
.price-breakdown { margin-bottom: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; }
.price-row--label { color: var(--text-2); }
.price-row--value { font-weight: 500; color: var(--text); }
.price-row--total { border-top: 1.5px solid var(--border); padding-top: 10px; margin-top: 4px; font-weight: 700; font-size: 14px; }
.price-row--free { color: var(--ocean); font-weight: 600; }
.deposit-box {
  background: var(--warm-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
}
.deposit-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.deposit-info { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.deposit-amount { font-size: 14px; font-weight: 700; color: var(--text); }
.deposit-sub { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.deposit-readmore {
  background: none;
  border: none;
  color: var(--ocean);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
}
.deposit-details { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.deposit-details.open { max-height: 150px; }
.deposit-details-inner {
  padding-top: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
}

.help-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 24px 28px;
  overflow: hidden;
  position: relative;
}
.help-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(39, 167, 153, 0.35), transparent);
  pointer-events: none;
}
.local-help { text-align: center; }
.local-help__people { display: flex; justify-content: center; margin-bottom: 12px; }
.local-help__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: var(--ocean);
}
.local-help__avatar + .local-help__avatar { margin-left: -12px; background: var(--teal); }
.local-help__avatar--photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.local-help__avatar--photo + .local-help__avatar--photo { margin-left: -18px; }
.local-help__heading { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.local-help__sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.local-help__links { display: flex; flex-direction: column; gap: 6px; }
.local-help__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: all 0.2s;
}
.local-help__link:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-bg); }

.plus-section { position: relative; overflow: hidden; min-height: 420px; }
.plus-bg { position: absolute; inset: 0; z-index: 0; }
.plus-bg img { width: 100%; height: 100%; object-fit: cover; }
.plus-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 35, 42, 0.92) 0%, rgba(12, 35, 42, 0.82) 40%, rgba(12, 35, 42, 0.45) 65%, transparent 100%);
}
.plus-inner {
  position: relative;
  z-index: 1;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  max-width: 560px;
  margin-left: max(40px, calc((100% - var(--max-w)) / 2 + 40px));
}
.plus-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.plus-title { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--white); margin-bottom: 8px; }
.plus-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }
.plus-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plus-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.plus-perk-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plus-perk-icon svg { width: 17px; height: 17px; color: var(--gold); }
.plus-form { display: flex; max-width: 460px; flex-wrap: wrap; }
.plus-fields { display: flex; flex: 1; min-width: 200px; }
.plus-input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.25s;
  min-width: 0;
}
.plus-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.plus-input:focus { border-color: var(--gold); }
.plus-input--name { border-radius: 12px 0 0 12px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.plus-input--email { border-radius: 0; border-left: none; border-right: none; }
.plus-submit {
  padding: 13px 24px;
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.plus-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  max-width: 440px;
}
.plus-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.plus-consent a { color: rgba(255, 255, 255, 0.55); text-decoration: underline; }
.plus-member-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.plus-member-count svg { width: 14px; height: 14px; }

.similar-section { padding: 40px 32px 60px; max-width: var(--max-w); margin: 0 auto; border-top: 1px solid var(--border); }
.similar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.similar-header h2 { font-size: 22px; font-weight: 700; }
.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
}
.similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.house-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.house-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.house-card-img { position: relative; height: 190px; overflow: hidden; }
.house-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.house-card:hover .house-card-img img { transform: scale(1.05); }
.save-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}
.house-card-body { padding: 14px 16px; }
.house-card-location {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.house-card-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.house-card-rating .star { color: var(--gold); }
.house-card-meta { display: flex; gap: 10px; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.house-card-price { font-size: 15px; font-weight: 700; color: var(--text); }
.house-card-price span { font-size: 12px; font-weight: 400; color: var(--muted); }

footer { background: #1a2e35; color: rgba(255, 255, 255, 0.6); padding: 36px 32px; text-align: center; font-size: 13px; }
footer strong { color: var(--white); }
footer a { color: #7dd3d8; text-decoration: none; }

.sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 500;
  backdrop-filter: blur(2px);
}
.sheet-overlay.open { display: block; }
.date-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 501;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 92vh;
  overflow-y: auto;
}
.date-sheet.open { transform: translateY(0); }
.date-sheet-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 14px auto 0; }
.date-sheet-header {
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}
.date-sheet-title { font-size: 16px; font-weight: 700; color: var(--text); }
.date-sheet-close { background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; }
.date-sheet-close svg { width: 20px; height: 20px; }
.date-sheet-tabs { display: flex; padding: 14px 20px 0; border-bottom: 1px solid var(--border-light); }
.date-sheet-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.date-sheet-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.date-sheet-content { padding: 20px; }
.selected-dates-summary {
  background: var(--teal-bg);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: none;
  gap: 12px;
}
.selected-dates-summary.show { display: flex; }
.sel-date-box { flex: 1; }
.sel-date-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 2px;
}
.sel-date-val { font-size: 14px; font-weight: 600; color: var(--text); }
.cal-month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month-nav button {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.cal-month-name { font-size: 15px; font-weight: 700; color: var(--text); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 16px; }
.cal-day-name { text-align: center; font-size: 11px; font-weight: 600; color: var(--muted); padding: 4px 0; }
.cal-day {
  text-align: center;
  padding: 9px 4px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--text);
}
.cal-day:hover:not(.disabled) { background: var(--teal-bg); color: var(--teal); }
.cal-day.empty { visibility: hidden; }
.cal-day.today { font-weight: 800; color: var(--ocean); }
.cal-day.selected { background: var(--teal); color: var(--white) !important; }
.cal-day.in-range { background: var(--teal-bg); }
.cal-day.disabled { color: #d1d5db; cursor: default; }
.date-sheet-confirm {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.show-all-btn {
  margin-top: 18px;
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 9px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.show-all-btn:hover { background: var(--teal); color: var(--white); }
