.lcr-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  background: var(--deep);
  overflow: hidden;
}

.lcr-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.lcr-hero__ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 26, 13, .22) 0%, rgba(13, 26, 13, .72) 74%, rgba(13, 26, 13, .92) 100%),
    radial-gradient(circle at top right, rgba(201, 168, 76, .22), transparent 32%);
}

.lcr-hero__body {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.lcr-pre {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 168, 76, .35);
  background: rgba(245, 239, 224, .06);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lcr-h1 {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
}

.lcr-h1 em {
  color: var(--gold);
  font-style: italic;
}

.lcr-sub {
  max-width: 620px;
  color: rgba(245, 239, 224, .76);
  font-size: 1rem;
  line-height: 1.72;
}

.lcr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lcr-shell {
  padding: 0 5% 90px;
  background:
    linear-gradient(180deg, var(--deep) 0 96px, var(--ivory) 96px 100%);
}

.lcr-meta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
}

.lcr-pill,
.lcr-score,
.lcr-rate {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.lcr-pill {
  font-weight: 600;
  color: var(--forest);
}

.lcr-pill i,
.lcr-score i,
.lcr-rate i {
  color: var(--gold);
  font-size: 1rem;
}

.lcr-score {
  justify-content: center;
  color: var(--forest);
  font-family: var(--font-ui);
  font-weight: 800;
}

.lcr-score span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.lcr-rate {
  justify-content: center;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.lcr-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: start;
}

.lcr-story,
.lcr-panel,
.lcr-room,
.lcr-faq__item,
.lcr-r-card {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.lcr-story {
  padding: 34px;
}

.lcr-sec {
  padding: 84px 5%;
}

.lcr-sec--cream {
  background: var(--cream);
}

.lcr-sec--ivory {
  background: var(--ivory);
}

.lcr-sec--deep {
  background: var(--deep);
}

.lcr-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.lcr-h2 {
  margin: 0 0 16px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
}

.lcr-h2 em {
  color: var(--sage);
  font-style: italic;
}

.lcr-story p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.85;
}

.lcr-list-title {
  margin: 26px 0 10px;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
}

.lcr-highlights,
.lcr-amenities__list,
.lcr-room__facts,
.lcr-room__inc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lcr-highlights li,
.lcr-amenities__list li,
.lcr-room__facts li,
.lcr-room__inc li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--forest);
  line-height: 1.65;
}

.lcr-highlights li::before,
.lcr-amenities__list li::before,
.lcr-room__facts li::before,
.lcr-room__inc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .18);
}

.lcr-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lcr-insight {
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(201, 168, 76, .09), rgba(201, 168, 76, .02));
  border-top: 3px solid var(--gold);
}

.lcr-insight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.lcr-insight span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.lcr-book {
  position: sticky;
  top: 110px;
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #fbf4df 100%);
  border: 1px solid rgba(201, 168, 76, .35);
}

.lcr-book__mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lcr-book__mini::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b864;
}

.lcr-book h3 {
  margin: 16px 0 10px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.12;
}

.lcr-book p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.lcr-book__form {
  display: grid;
  gap: 12px;
}

.lcr-book__form label {
  display: block;
  margin-bottom: 6px;
  color: #8c8160;
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lcr-book__form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  padding: 12px 14px;
  outline: none;
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}

.lcr-book__form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .14);
}

.lcr-book__form button {
  margin-top: 4px;
}

.lcr-book__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.lcr-book__trust div {
  padding: 12px 10px;
  background: rgba(26, 46, 26, .06);
  text-align: center;
}

.lcr-book__trust strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.lcr-book__trust span {
  color: var(--muted);
  font-size: .73rem;
}

.lcr-panel {
  padding: 30px;
}

.lcr-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
}

.lcr-amenities__col h3 {
  margin: 0 0 14px;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lcr-rooms {
  display: grid;
  gap: 18px;
}

.lcr-room {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 190px;
  overflow: hidden;
}

.lcr-room__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lcr-room__body {
  padding: 24px 22px;
}

.lcr-room__body h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
}

.lcr-room__body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
}

.lcr-room__block-title {
  margin: 16px 0 10px;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lcr-room__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.lcr-room__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: var(--forest);
  text-align: center;
}

.lcr-room__rate {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.lcr-room__rate span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 239, 224, .68);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 400;
}

.lcr-faq {
  display: grid;
  gap: 12px;
}

.lcr-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: none;
  background: none;
  padding: 20px 22px;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.lcr-faq__btn span:last-child {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.lcr-faq__answer {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.lcr-related__hdr {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.lcr-related__lead {
  max-width: 520px;
  color: rgba(245, 239, 224, .68);
  line-height: 1.75;
}

.lcr-related__hdr .lcr-h2 {
  color: var(--cream);
}

.lcr-related__hdr .lcr-h2 em {
  color: #8dbf6a;
}

.lcr-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lcr-r-card {
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease;
}

.lcr-r-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 54px rgba(0, 0, 0, .22);
}

.lcr-r-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.lcr-r-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.lcr-r-card:hover .lcr-r-card__media img {
  transform: scale(1.08);
}

.lcr-r-card__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 13, .15) 0%, rgba(13, 26, 13, .84) 100%);
}

.lcr-r-card__top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.lcr-r-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  backdrop-filter: blur(12px);
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lcr-r-card__body {
  padding: 18px 18px 20px;
}

.lcr-r-card__title {
  margin: 0 0 8px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1.14;
}

.lcr-r-card__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.lcr-r-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.lcr-r-card__facts span {
  padding: 7px 10px;
  background: rgba(201, 168, 76, .12);
  color: var(--forest);
  font-size: .74rem;
  font-weight: 600;
}

.lcr-r-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lcr-r-card__price {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
}

.lcr-r-card__price span {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
}

.lcr-r-card__btn {
  border: none;
  background: var(--forest);
  color: var(--gold);
  padding: 12px 16px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.lcr-r-card__btn:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .lcr-top {
    grid-template-columns: 1fr;
  }

  .lcr-book {
    position: static;
  }

  .lcr-meta {
    grid-template-columns: 1fr;
  }

  .lcr-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .lcr-amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcr-room {
    grid-template-columns: 1fr;
  }

  .lcr-room__img {
    height: 260px;
  }

  .lcr-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lcr-related__hdr {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .lcr-hero {
    min-height: 66vh;
    padding-top: 110px;
  }

  .lcr-story,
  .lcr-panel,
  .lcr-book {
    padding: 24px 20px;
  }

  .lcr-insights,
  .lcr-amenities,
  .lcr-room__facts,
  .lcr-book__trust,
  .lcr-related-grid {
    grid-template-columns: 1fr;
  }

  .lcr-r-card__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcr-r-card__btn {
    width: 100%;
  }
}
