/* ---- structural / layout ---- */
.lzb-stay .wrap {
  max-width: var(--maxw, 1180px);
  margin: 0 auto;
  padding: 0 26px;
}
.lzb-stay section {
  padding: 90px 0;
}
.lzb-stay .sec-head {
  margin-bottom: 50px;
  max-width: 740px;
}
.lzb-stay .sec-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fairway, #1f7a4d);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lzb-stay .sec-tag:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brass, #c9a24b);
}
.lzb-stay h2.big {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink, #0a1410);
  margin-bottom: 0;
  line-height: 1.04;
  letter-spacing: -.02em;
}
.lzb-stay .sec-head p {
  margin-top: 16px;
  font-size: 16px;
  color: #46584d;
  margin-bottom: 0;
}

/* ---- stay ---- */
.lzb-stay .stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lzb-stay .stay {
  border-radius: var(--r, 18px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow, 0 24px 60px -28px rgba(0,0,0,.55));
}
.lzb-stay .stay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.lzb-stay .stay:hover img {
  transform: scale(1.06);
}
.lzb-stay .stay .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,20,16,.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--cream, #f7f3e8);
}
.lzb-stay .stay .ov .area {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass, #c9a24b);
  margin-bottom: 6px;
}
.lzb-stay .stay .ov h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.lzb-stay .stay .ov p {
  font-size: 13px;
  color: var(--cream-2, #ece4d2);
  opacity: .88;
}
.lzb-stay .note-line {
  font-size: 14px;
  line-height: 1.6;
}
@media(max-width:900px) {
  .lzb-stay .stay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:640px) {
  .lzb-stay .stay-grid {
    grid-template-columns: 1fr;
  }
  .lzb-stay section {
    padding: 64px 0;
  }
}
