:root {
  /* Layout sizing unique to this page */
  --lhcp-wide-max: 1680px;
  --lhcp-content-max: 1400px;
  --lhcp-mobile-max: 760px;
  --lhcp-wide-gutter: 48px;
  --lhcp-content-gutter: 32px;
  --lhcp-mobile-gutter: 24px;

  /* Shared fluid sizing */
  --lhcp-section-space: clamp(52px, 6vw, 96px);
  --lhcp-layout-gap: clamp(28px, 5.5vw, 76px);
  --lhcp-copy-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --lhcp-control-size: clamp(38px, 2rem + 1.7vw, 60px);
  --lhcp-play-size: clamp(64px, 3.35rem + 1.5vw, 82px);

  /* Shared fluid heading scale */
  --lhcp-heading-sm: clamp(1.1rem, 1.02rem + 0.3vw, 1.25rem);
  --lhcp-heading-md: clamp(1.25rem, 1.08rem + 0.65vw, 1.6rem);
  --lhcp-heading-lg: clamp(1.7rem, 1.28rem + 1.45vw, 2.8rem);
  --lhcp-heading-xl: clamp(2.1rem, 1.45rem + 2.4vw, 4rem);

  /* Component sizing */
  --lhcp-hero-height: clamp(520px, 68vh, 700px);
  --lhcp-feature-icon-size: 64px;
  --lhcp-line: rgba(21, 25, 34, 0.1);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #e3e3e3;
}

.ud-btn i {
  transform: inherit;
}

.lhcp {
  color: var(--ink);
  background: #fff;
}

.lhcp-wide {
  width: min(var(--lhcp-wide-max), calc(100% - var(--lhcp-wide-gutter)));
}

.lhcp-wrap {
  width: min(var(--lhcp-content-max), calc(100% - var(--lhcp-content-gutter)));
}

.lhcp-section {
  padding-block: var(--lhcp-section-space);
}

.lhcp-section + .lhcp-section {
  padding-top: 0;
}

/* Fluid headings scoped to the community page */
.lhcp-title {
  font-size: var(--lhcp-heading-xl);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lhcp .section-title,
.lhcp .lhcp-heading,
.lhcp .h1 {
  font-size: var(--lhcp-heading-lg);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lhcp .h2,
.lhcp .h3 {
  font-size: var(--lhcp-heading-md);
  line-height: 1.15;
}

.lhcp .h4,
.lhcp .h5,
.lhcp h5 {
  font-size: var(--lhcp-heading-sm);
  line-height: 1.25;
}

.lhcp-copy {
  font-size: var(--lhcp-copy-size);
}

.lhcp-copy p {
  line-height: 1.65;
}

.lhcp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.lhcp-section-head > div {
  min-width: 0;
}

.lhcp-quick a .rounded-pill {
  width: var(--lhcp-control-size);
  height: var(--lhcp-control-size);
}

/* Hero */
.lhcp-hero {
  min-height: var(--lhcp-hero-height);
  border-radius: var(--radius);
  background: var(--dark-card);
}

.lhcp-hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.lhcp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(10 14 18 / 8%) 0%, rgb(10 14 18 / 18%) 50%, rgb(10 14 18 / 30%) 100%);
}

.lhcp-hero .lhcp-wrap {
  z-index: 2;
}

/* About */
.lhcp-about {
  grid-template-columns: minmax(260px, 0.85fr) 1.1fr auto;
  gap: var(--lhcp-layout-gap);
  margin-bottom: var(--lhcp-layout-gap);
}

.lhcp-strip {
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
}

/* Features */
.lhcp-feature-icon {
  flex: 0 0 var(--lhcp-feature-icon-size);
  width: var(--lhcp-feature-icon-size);
  height: var(--lhcp-feature-icon-size);
  color: var(--ink);
  background: var(--soft);
}

/* Desktop */
.lhcp-feature:nth-child(1),
.lhcp-feature:nth-child(2) {
  border-right: 1px solid var(--lhcp-line);
}

.lhcp-panel {
  border: 1px solid rgb(21 25 34 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgb(21 25 34 / 6%);
}

.lhcp-soft {
  border-radius: var(--radius);
}

.lhcp-team {
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--lhcp-layout-gap);
}

.lhcp-gallery {
  columns: 3 280px;
  column-gap: 1rem;
}

.lhcp-gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: var(--dark-card);
}

.lhcp-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.lhcp-gallery-item:hover img {
  transform: scale(1.04);
}

.lhcp-gallery-video a {
  min-height: 240px;
  background: linear-gradient(135deg, var(--ink), #202818);
  text-decoration: none;
}

.lhcp-gallery-play {
  width: var(--lhcp-play-size);
  height: var(--lhcp-play-size);
  border-radius: 50%;
  background: rgb(255 255 255 / 16%);
}

#galleryMoreWrap {
  padding-top: 1.25rem;
}

@media (max-width: 1199.98px) {
  .lhcp-about,
  .lhcp-team {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  :root {
    --lhcp-hero-height: clamp(380px, 60vh, 520px);
  }

  .lhcp-wide {
    width: min(calc(100% - var(--lhcp-mobile-gutter)), var(--lhcp-mobile-max));
    padding-top: 16px;
  }

  .lhcp-hero::after {
    background: linear-gradient(180deg, rgb(10 14 18 / 45%) 0%, rgb(10 14 18 / 20%) 50%, rgb(10 14 18 / 50%) 100%);
  }

  .lhcp-crumb {
    margin-bottom: 32px;
  }

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

  .lhcp-strip {
    grid-template-columns: 1fr;
  }

  .lhcp-feature {
    border-right: 0;
    border-bottom: 1px solid var(--lhcp-line);
  }

  .lhcp-feature:nth-child(1),
  .lhcp-feature:nth-child(2) {
    border-right: 0;
  }

  .lhcp-feature:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .lhcp-quick {
    gap: 1rem !important;
  }
}

/* amenities */
.amenity-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
  height: 100%;
}

.amenity-row {
  cursor: pointer !important;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
}

.amenity-img {
  aspect-ratio: 16/9;
  background: #f7f7f7;
}

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

.amenity-body {
  padding: 1rem;
}

.amenity-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-secondary);
}

.amenity-row-title {
  font-size: 1.1rem;
  margin: 0.25rem 0 0;
  font-family: var(--title-font-family);
}
