.lh-search {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.8fr) auto;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--lh-shadow);
  align-items: end;
}

.lh-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.lh-field__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lh-muted);
}

.lh-field input,
.lh-field select,
.lh-field textarea {
  width: 100%;
  border: 1px solid var(--lh-border);
  border-radius: 8px;
  min-height: 44px;
  padding: 8px 12px;
  background: #fff;
}

.lh-form {
  display: grid;
  gap: 12px;
}

.property-card,
.agent-card {
  background: #fff;
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lh-navy-10);
  transition: transform var(--lh-transition), box-shadow var(--lh-transition);
}

.property-card:hover,
.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lh-shadow);
}

.property-card__media,
.agent-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--lh-surface);
  overflow: hidden;
}

.agent-card__media {
  aspect-ratio: 3 / 4;
}

.property-card__media img,
.agent-card__media img,
.agent-single__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--lh-navy-10), var(--lh-surface));
}

.property-card__body,
.agent-card__body {
  padding: 16px 18px 20px;
}

.property-card__price {
  color: var(--lh-blue);
  font-weight: 700;
  margin-bottom: 6px;
}

.property-card__title,
.agent-card__title {
  text-transform: none;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.property-card__loc,
.agent-card__role,
.property-hero__addr {
  color: var(--lh-muted);
  font-size: 0.92rem;
}

.property-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--lh-muted);
  font-size: 0.85rem;
}

.aside-card {
  background: var(--lh-surface);
  border-radius: var(--lh-radius-lg);
  padding: 24px;
}

.aside-card + .aside-card {
  margin-top: 16px;
}

.aside-card__photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.spec-row li {
  background: var(--lh-surface);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.85rem;
  color: var(--lh-muted);
}

.spec-row strong {
  display: block;
  color: var(--lh-navy);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 32px;
}

.amenity-list li {
  border: 1px solid var(--lh-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.lh-map {
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.gallery__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--lh-navy);
  border-radius: var(--lh-radius-lg);
  overflow: hidden;
}

.gallery__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__stage img.is-active {
  opacity: 1;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lh-navy);
  font-size: 1.4rem;
  z-index: 2;
}

.gallery__nav--prev { left: 16px; }
.gallery__nav--next { right: 16px; }

.page-hero,
.property-hero {
  padding: 48px 0 24px;
  background: var(--lh-surface);
}

.nav-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 960px) {
  .lh-search {
    grid-template-columns: 1fr 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .lh-search {
    grid-template-columns: 1fr;
  }
}

.lh-page__content {
	width: var(--container-wide, min(1290px, calc(100% - 2rem)));
	margin-inline: auto;
	padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 6.5rem);
	color: #24367d;
}

.lh-page__content > *:not(.alignfull):not(.alignwide) {
	max-width: 42rem;
}
