/* ============================================================
   MAYFAIR PLACE — Long-Term Living  (matched to v0 screenshots)
   ============================================================ */

:root {
 }

/* ---------- Hero ---------- */
.lt-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.lt-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  z-index: 0;
}
.lt-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(45,40,32,0.34);
}
.lt-hero__inner { }
.lt-hero__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px,2.4vw,34px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 26px rgba(0,0,0,.3);
  margin-bottom: 30px;
}
.lt-hero__sub {
  color: var(--text);
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 880px;
  margin: 0 auto;
  
}

/* ---------- Intro ---------- */
.lt-intro { background: var(--cream); padding: 24px 0 80px; text-align: center; }
.lt-intro__inner { max-width: 920px; margin: 0 auto; padding: 0 48px; }
.lt-intro p {
  font-size: clamp(15px,1.29vw,19px);
  line-height: 1.85;
  color: #6B6B6B;
  font-weight: 300;
}
.lt-intro p:first-child {
  margin-bottom: 34px;
}
.lt-intro p + p { margin-top: 30px; }

/* ---------- Benefits checklist ---------- */
.lt-benefits { background: var(--taupe); padding: 110px 0; }
.lt-benefits__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 64px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 72px;
  max-width: 1080px;
  margin: 0 auto;
}
.benefit-item { display: flex; align-items: flex-start; gap: 18px; }
.benefit-item__check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.benefit-item__check svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.5; fill: none; }
.benefit-item__label {
  font-size: 16px;
  font-weight: 300;
  color: #6B6B6B;
  line-height: 1.5;
}

/* ---------- Feature blocks (audience: nomads/families/retirees) ---------- */
.lt-feature {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 110px 56px;
}
.lt-feature--img-left .lt-feature__img  { order: 1; }
.lt-feature--img-left .lt-feature__text { order: 2; }

.lt-feature__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 30px;
  line-height: 1.05;
}
.lt-feature__body {
  font-size: 16px;
  line-height: 1.75;
  color: #6B6B6B;
  font-weight: 300;
  margin-bottom: 40px;
}
.lt-feature__list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.lt-feature__list li {
  font-size: 16px;
  color: #6B6B6B;
  font-weight: 300;
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.lt-feature__list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}
.lt-feature__img { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.lt-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA (dark) ---------- */
.lt-cta { background: var(--brown-dark); padding: 40px 0 20px; text-align: center; }
.lt-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--cream);
  line-height: 1.06;
  margin-bottom: 30px;
}
.lt-cta__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: rgba(249,247,242,0.72);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.6;
}
.btn--cta-dark {
  background: rgba(249,247,242,0.06);
  color: var(--cream);
  border: 1px solid rgba(249,247,242,0.4);
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 18px 44px;
}
.btn--cta-dark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
  .lt-feature { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px; }
  .lt-feature__text,
  .lt-feature--img-left .lt-feature__text { order: 1 !important; }
  .lt-feature__img,
  .lt-feature--img-left .lt-feature__img { order: 2 !important; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .lt-hero { height: 58vh; }
}

/* ---------- Hero text below banner ---------- */
.lt-hero-text { background:var(--cream); text-align:center; padding:60px 48px 24px; }
