:root {
  /* Color palette */
  --white: var(--lv-paper);
  --alt-bg: var(--lv-mist);

  /* Typography & colors */
  --text-color: var(--lv-ink-soft);
  --heading-color: var(--lv-ink);
  --hero-h-color: #ffffff;    /* hero overlay text */
  --top-title: var(--lv-ink); /* title next to logo */
  --link-color: var(--lv-link, var(--lv-ink-soft));
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--lv-font-body);
  color: var(--text-color);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--heading-color);
  margin: 0 0 0.5em;
  font-weight: 600;
}

header h2 {
  color: var(--top-title);
  font-weight: 400;
  margin:0;
  line-height:64px
}

a { color: var(--link-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Section theming */
section { padding: 80px 20px; }
.section-light { background: var(--white); }
.section-soft { background: var(--alt-bg); }
.arrival-section { padding-top: 0; padding-bottom: 24px; }
.benefits-section { padding: 18px 20px 20px; }

.top-hero {
  padding: 0;
  background: #f6f3ed;
}
.top-hero-wrap {
  max-width: none;
  margin: 0 auto;
  min-height: 92vh;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1f2730;
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 27, 41, 0.35);
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.12) contrast(1.12) saturate(1.06);
  z-index: -2;
}
.top-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 16, 24, 0.42) 0%, rgba(16, 22, 33, 0.26) 42%, rgba(26, 19, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.24) 0%, rgba(8, 12, 18, 0.04) 40%, rgba(7, 10, 16, 0.36) 100%);
  z-index: -1;
}
.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px 0;
}
.brand-mark {
  font-size: 34px;
  line-height: 0.9;
  font-family: var(--lv-font-display);
  color: #f2f2f2;
  letter-spacing: 0.03em;
  margin: 0;
  text-align: center;
}
.brand-mark small {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-family: var(--lv-font-body);
  opacity: 0.88;
  margin-top: 4px;
}
.top-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.top-menu a:hover {
  color: #fff;
  text-decoration: none;
}
.top-book-btn {
  background: #e6d8bd;
  color: #2f2b22;
  border-radius: 6px;
  font-weight: 700;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.top-book-btn:hover {
  text-decoration: none;
  background: #f2e8d4;
}
.hero-main {
  padding: 94px 34px 30px;
  max-width: 760px;
}
.hero-kicker {
  margin: 0 0 14px;
  color: rgba(246, 246, 246, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 13px;
}
.hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--lv-font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.06;
  font-weight: 500;
  text-wrap: balance;
}
.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 245, 0.92);
  font-size: 15px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding-right: 16px;
}
.hero-feature:last-child {
  border-right: none;
  padding-right: 0;
}
.hero-intro {
  margin: 0 0 22px;
  color: rgba(243, 243, 243, 0.9);
  font-size: 20px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn {
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero-btn.primary {
  background: #e6d8bd;
  color: #2b261e;
}
.hero-btn.secondary {
  background: rgba(18, 24, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.hero-btn:hover {
  text-decoration: none;
  filter: brightness(1.04);
}
.hero-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: rgba(10, 15, 22, 0.45);
}
.hero-stat {
  padding: 16px 18px;
  color: rgba(241, 241, 241, 0.92);
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-icon {
  font-size: 20px;
  color: #e7d8bc;
  min-width: 24px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.hero-stat span {
  font-size: 13px;
  opacity: 0.9;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin: 0 0 6px;
  color: #2f2c24;
  font-size: 34px;
  font-family: var(--lv-font-display);
  font-weight: 600;
}
.section-heading p {
  margin: 0;
  color: #6e685a;
  font-size: 16px;
}

.house-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.house-card {
  background: #f8f7f4;
  border: 1px solid #e2ddd2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}
.house-content {
  padding: 0 20px 20px;
}
.house-price {
  margin: 0;
  color: #2f2b23;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.house-meta {
  margin: 0;
  color: #6a6356;
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px;
  border-top: 1px solid #ece7dc;
  border-bottom: 1px solid #ece7dc;
}
.house-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.house-meta i {
  color: #958a73;
  font-size: 15px;
}

.slider {
  position: relative;
  background: #f1ece3;
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 0;
  flex: 0 0 auto;
}
.slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.slides img.is-portrait {
  object-fit: contain;
  background: #f1ece3;
}
.house-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 12;
  background: #3f4b33;
  color: #f2f4ef;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(237, 240, 232, 0.35);
  border-radius: 10px;
  padding: 7px 16px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 20, 14, 0.48);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 3px 10px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.house-card:hover .nav-btn { opacity: 1; }
.prev { left: 10px; }
.next { right: 10px; }

.house-description {
  margin: 18px 0 20px;
  color: #4d463b;
  font-size: 18px;
  line-height: 1.55;
  min-height: 114px;
}
.house-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.house-detail-link {
  color: #3f3a30;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.house-detail-link:hover { text-decoration: none; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.chip {
  display:flex;
  align-items:center;
  gap:6px;
  background:#f4f6f9;
  border: 1px solid #e6dfd1;
  border-radius:6px;
  padding:7px 10px;
  color:#4f4a3f;
  font-size:13px;
  line-height:1;
  font-weight: 600;
}
.chip svg { width:18px; height:18px; flex:0 0 18px; }

.reviews-carousel {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 14px;
}
.reviews-viewport {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 14px;
  transition: transform 0.32s ease;
  will-change: transform;
}
.arrival-wrap {
  background: #ece8e1;
  border: 1px solid #e1dacc;
  border-radius: 0;
  padding: 22px 22px 16px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.arrival-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.arrival-intro { padding: 10px 8px; }
.arrival-eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8e8068;
  font-size: 16px;
  font-weight: 700;
}
.arrival-intro h3 {
  margin: 0 0 10px;
  color: #322d24;
  font-size: 42px;
  line-height: 1.03;
  font-family: var(--lv-font-display);
  font-weight: 500;
}
.arrival-intro p {
  margin: 0 0 12px;
  color: #746d5f;
  font-size: 16px;
  line-height: 1.4;
  max-width: 280px;
}
.arrival-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3f4b33;
  color: #f2f4ef;
  border-radius: 4px;
  padding: 8px 11px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 10px;
}
.arrival-calendar-btn:hover { background: #334028; }
.arrival-card {
  background: #f5f3ef;
  border: 1px solid #e0dacc;
  border-radius: 4px;
  padding: 12px 14px;
}
.arrival-card h4 {
  margin: 0 0 8px;
  color: #2f2a22;
  font-size: 16px;
  border-bottom: 1px solid #ddd6c8;
  padding-bottom: 8px;
}
.arrival-card p {
  margin: 0 0 7px;
  color: #5f584a;
  font-size: 16px;
  font-weight: 600;
}
.arrival-card p:last-child { margin-bottom: 0; }
.arrival-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #544d41;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.arrival-link:hover { text-decoration: underline; }

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  padding-top: 0;
}
.benefit-item {
  text-align: center;
  padding: 8px 10px 0;
}
.benefit-item i {
  color: #7a6e57;
  font-size: 28px;
  margin-bottom: 10px;
  display: inline-block;
}
.benefit-item h4 {
  margin: 0 0 6px;
  color: #383226;
  font-size: 15px;
  line-height: 1.25;
}
.benefit-item p {
  margin: 0;
  color: #6f6859;
  font-size: 13px;
  line-height: 1.45;
  max-width: 180px;
  margin-inline: auto;
}

.booking-section { padding: 30px 20px 34px; }
.booking-flow {
  text-align: center;
  margin-top: 0;
}
.booking-flow h2 {
  margin: 0 0 20px;
  color: #2f2a22;
  font-size: 34px;
  line-height: 1.02;
  font-family: var(--lv-font-display);
  font-weight: 500;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  justify-items: center;
  margin: 45px 0 40px;
}
.step-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.step-content { padding-top: 1px; }
.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  background: #fff;
  border: 1px solid #e7e1d5;
  border-radius: 8px;
  padding: 12px 14px;
}
.step-card h4 {
  margin: 0 0 1px;
  color: #383226;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.step-card p {
  margin: 0;
  color: #383226;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.review-card h4 {
  margin: 0 0 8px;
  color: #383226;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
.review-stars {
  color: #cfab63;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.review-card p {
  margin: 0;
  color: #6f6859;
  font-size: 12px;
  line-height: 1.35;
}
.review-card .review-text {
  margin-top: 8px;
}
.reviews-more {
  text-align: center;
}
.review-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #ddd5c6;
  background: #f5f1e8;
  color: #8e8168;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.review-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  color: #5f5748;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.reviews-more-link:hover { text-decoration: none; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dfd3bc;
  color: #4a4337;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 0;
  flex: 0 0 44px;
  font-size: 22px;
}
.booking-note {
  margin: 14px 0 0;
  color: #7a7264;
  font-size: 13px;
}
.atmosphere-section {
  padding-left: 0;
  padding-right: 0;
}
.atmosphere-section .section-heading {
  margin-bottom: 16px;
}
.atmosphere-section .section-heading h2 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 0;
}
.atmosphere-row {
  --atmosphere-cols: 10;
  display: grid;
  grid-template-columns: repeat(var(--atmosphere-cols), minmax(0, 1fr));
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  background: #ece8e1;
  line-height: 0;
  font-size: 0;
}
.atmosphere-row img {
  width: 100%;
  min-width: 0;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #ece8e1;
}
.location-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e7e1d5;
  border-radius: 8px;
  padding: 16px;
  color: #6f6859;
}
.location-card strong {
  color: #383226;
}
.map-btn{display:inline-block;margin-top:12px;padding:11px 22px;background:#e6d8bd;color:#2b261e;border-radius:6px;font-weight:700}
.map-btn:hover{background:#f2e8d4}
.seo-section {
  padding: 56px 20px;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.seo-card {
  background: #fff;
  border: 1px solid #e7e1d5;
  border-radius: 8px;
  padding: 18px;
}
.seo-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-family: var(--lv-font-display);
  color: #2f2c24;
}
.seo-card p {
  margin: 0 0 10px;
  color: #6f6859;
  font-size: 16px;
  line-height: 1.6;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.seo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dfd6c5;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  color: #4f493d;
  background: #faf7f1;
  text-decoration: none;
}
.seo-link:hover {
  background: #f3eee4;
  text-decoration: none;
}
.faq-list {
  margin-top: 2px;
}
.faq-item {
  border-top: 1px solid #e8e2d6;
  padding: 12px 0;
}
.faq-item:first-child {
  border-top: none;
  padding-top: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #3b3529;
  font-size: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin: 8px 0 0;
  font-size: 15px;
}

.book-now-btn {
  display: inline-block;
  background: #121a26;
  border: 1px solid #2f3b4d;
  color: #f5f5f5;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
}
.book-now-btn:hover {
  background: #1a2636;
  text-decoration: none;
}

/* Mobile tweaks */
@media(max-width:1100px){
  .top-menu { display: none; }
}
@media(max-width:900px){
  .house-grid { grid-template-columns: 1fr; }
  .house-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    text-align: left;
  }
  .house-meta span {
    justify-content: flex-start;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: calc((100% - 14px) / 2); }
  .arrival-layout { grid-template-columns: 1fr; }
  .benefits-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .atmosphere-row { --atmosphere-cols: 6; }
}
@media(max-width:768px){
  .top-hero-wrap {
    border-radius: 0;
    min-height: 86vh;
  }
  .top-nav {
    padding: 8px 16px 0;
  }
  .brand-mark { font-size: 28px; }
  .hero-main {
    padding: 84px 16px 20px;
  }
  .hero-intro { font-size: 18px; }
  .hero-feature {
    border-right: none;
    padding-right: 0;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .hero-stat:first-child {
    border-top: none;
  }
  .slider{height: 250px;}
  .reviews-carousel {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }
  .review-card { flex-basis: 100%; }
  .review-nav {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .benefits-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .atmosphere-section .section-heading h2 { font-size: 40px; }
  .atmosphere-row { --atmosphere-cols: 3; }
  .atmosphere-row img { height: 160px; }
  .atmosphere-row img:last-child { display: none; }
  .benefit-item i { font-size: 24px; }
  .benefit-item h4 { font-size: 14px; }
  .benefit-item p { font-size: 12px; }
  .arrival-intro h3 { font-size: 30px; }
  .booking-flow h2 { font-size: 34px; }
  .house-description {
    font-size: 16px;
    min-height: 0;
  }
  .house-price { font-size: 24px; }
  .seo-grid { grid-template-columns: 1fr; }
  .seo-card h3 { font-size: 24px; }
}

/* Home page refinements layered above shared design tokens. */
.top-hero-wrap::before {
  background:
    linear-gradient(90deg, rgba(15, 21, 18, 0.58) 0%, rgba(24, 29, 23, 0.34) 43%, rgba(23, 20, 16, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 13, 12, 0.42) 0%, rgba(10, 13, 12, 0.04) 44%, rgba(10, 13, 12, 0.56) 100%) !important;
}

.top-nav {
  padding-top: 16px !important;
}

.brand-mark {
  letter-spacing: 0.04em;
}

.top-menu {
  gap: 10px !important;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(19, 26, 20, 0.24);
  backdrop-filter: blur(12px);
}

.top-menu a {
  border-radius: 999px;
  padding: 7px 11px;
}

.top-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.top-book-btn,
.hero-btn.primary,
.arrival-calendar-btn,
.map-btn,
.book-now-btn {
  background: var(--lv-honey) !important;
  color: #29251d !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: var(--lv-radius-control) !important;
  box-shadow: 0 10px 22px rgba(35, 31, 22, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.top-book-btn:hover,
.hero-btn.primary:hover,
.arrival-calendar-btn:hover,
.map-btn:hover,
.book-now-btn:hover {
  background: #ead8aa !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(35, 31, 22, 0.16);
}

.hero-main {
  max-width: 820px !important;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82) !important;
}

.hero-title {
  max-width: 760px;
}

.hero-decision-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hero-decision-line li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(20, 26, 20, 0.42);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-btn.secondary {
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(23, 30, 23, 0.42) !important;
}

.hero-bottom {
  backdrop-filter: blur(14px);
}

.hero-stat {
  min-height: 86px !important;
}

.section-heading h2,
.atmosphere-section .section-heading h2 {
  letter-spacing: 0;
}

.house-card,
.seo-card,
.review-card,
.location-card {
  background: var(--lv-paper) !important;
  border-color: var(--lv-stone) !important;
  border-radius: var(--lv-radius-card) !important;
}

.house-card {
  box-shadow: var(--lv-shadow-soft) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.house-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lv-shadow-card) !important;
}

.slider {
  background: #e9e2d4 !important;
}

.nav-btn,
.review-nav {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  background: rgba(20, 26, 20, 0.62) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.nav-btn {
  width: 42px;
  height: 42px;
  padding: 0 !important;
}

.house-badge {
  background: var(--lv-forest) !important;
}

.house-content {
  display: flex;
  min-height: 230px;
  flex-direction: column;
}

.house-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 2px;
}

.house-summary span {
  padding: 10px 8px;
  border: 1px solid #e7dfd2;
  border-radius: 8px;
  background: #faf6ee;
  color: var(--lv-ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.house-summary small {
  display: block;
  margin-top: 2px;
  color: var(--lv-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.house-description {
  min-height: 0 !important;
}

.house-footer {
  margin-top: auto;
}

.house-detail-link {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #ddd2bf;
  border-radius: var(--lv-radius-control);
  background: #f7f1e6;
  white-space: nowrap;
}

.house-detail-link:hover {
  background: #efe2cd;
}

.faq-item summary {
  position: relative;
  padding-right: 32px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--lv-clay);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

@media (max-width: 900px) {
  .house-content {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .top-nav {
    gap: 8px !important;
    padding: 10px 12px 0 !important;
  }

  .top-nav .brand-mark {
    flex-shrink: 1;
    min-width: 0;
    font-size: 24px !important;
  }

  .top-nav .brand-mark small {
    font-size: 11px !important;
  }

  .top-nav .nav-actions {
    flex-shrink: 0;
    gap: 5px;
  }

  .top-menu {
    display: none !important;
  }

  .top-book-btn {
    padding: 8px 10px !important;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-main {
    padding-top: 96px !important;
  }

  .hero-decision-line li {
    font-size: 13px;
  }

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

  .hero-btn {
    justify-content: center;
    width: 100%;
  }

  .house-summary {
    grid-template-columns: 1fr;
  }

  .house-footer {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .house-detail-link {
    justify-content: center;
  }

}
