/* ============================================================
   MAYFAIR PLACE — Why Mayfair  (matched to v0 screenshots)
   ============================================================ */

:root {
 }

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

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

/* ---------- Key Differentiators ---------- */
.kd { background: var(--taupe); padding: 60px 0 90px; }
.kd__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 76px;
}
.kd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.kd-card { display: flex; flex-direction: column; }
.kd-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px,1.3vw,18px);
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.08;
}
.kd-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #6B6B6B;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 540px;
}
.kd-card__img { width: 100%; aspect-ratio: 3/2; overflow: hidden; margin-top: auto; }
.kd-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA (light, bordered button) ---------- */
.wm-cta { background: var(--cream); padding: 70px 0; text-align: center; }
.wm-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  line-height: 1.04;
  margin-bottom: 28px;
}
.wm-cta__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  margin: 0 auto 52px;
}
.btn--cta-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,26,26,0.45);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 18px 52px;
}
.btn--cta-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .kd-grid { grid-template-columns: 1fr; gap: 48px; }
  .kd-card__img { aspect-ratio: 16/10; }
}
@media (max-width: 768px) {
  .wm-hero { height: 58vh; }
}

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