/* ============================================================
   MAYFAIR PLACE — Villas Page  (rebuilt to match v0 screenshots)
   ============================================================ */

/* Muted warm grey used for all body copy on this page */
:root {
 }

/* ---------- Hero ---------- */
.villas-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.villas-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  z-index: 0;
}
/* Very light wash — the architecture stays clearly visible */
.villas-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(60,50,40,0.18);
}
.villas-hero__inner { }
.villas-hero__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px,2.4vw,34px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
  margin-bottom: 26px;
}
.villas-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 text ---------- */
.villas-intro { background: var(--cream); padding: 24px 0 80px; text-align: center; }
.villas-intro__inner { max-width: 920px; margin: 0 auto; padding: 0 48px; }
.villas-intro p {
  font-size: clamp(15px,1.29vw,19px);
  line-height: 1.85;
  color: #6B6B6B;
  font-weight: 300;
}
.villas-intro p:first-child {
  margin-bottom: 34px;
}
.villas-intro p + p { margin-top: 30px; }

/* ---------- Key Features ---------- */
.key-features { background: var(--taupe); padding: 110px 0; }
.key-features__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;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 72px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.feature-item { display: flex; align-items: flex-start; gap: 18px; }
.feature-item__check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-item__check svg {
  width: 15px; height: 15px;
  stroke: #fff; stroke-width: 2.5; fill: none;
}
.feature-item__label {
  font-size: 16px;
  font-weight: 300;
  color: #6B6B6B;
  line-height: 1.5;
}

/* ---------- Tour heading ---------- */
.tour-heading { background: var(--cream); padding: 110px 0 90px; text-align: center; }
.tour-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
}

/* ---------- Floor sections ---------- */
.floor-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px 60px;
}
.floor-section--img-left { /* image already first in source order */ }

.floor-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px,1.3vw,18px);
  color: var(--ink);
  margin-bottom: 26px;
  line-height: 1.15;
}
.floor-section__body {
  font-size: 17px;
  line-height: 1.8;
  color: #6B6B6B;
  font-weight: 300;
  margin-bottom: 34px;
}
.floor-section__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.floor-section__list li {
  font-size: 16px;
  color: #6B6B6B;
  font-weight: 300;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.floor-section__list li::before {
  content: '•';
  position: absolute; left: 0;
  color: #6B6B6B;
}
.floor-section__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.floor-section__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA (dark) ---------- */
.villas-cta { background: var(--brown-dark); padding: 80px 0 15px; text-align: center; }
.villas-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--cream);
  line-height: 1.08;
  margin: 0 auto 26px;
  max-width: 900px;
}
.villas-cta__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(249,247,242,0.72);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.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) {
  .floor-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px 72px;
  }
  .floor-section__text { order: 1; }
  .floor-section__img { order: 2; aspect-ratio: 4/3; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .villas-hero { height: 58vh; }
}

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