/* ============================================================
   MAYFAIR PLACE — Experience Page  (matched to v0 screenshots)
   ============================================================ */

:root {
 }

/* ---------- Hero ---------- */
.exp-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.exp-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  z-index: 0;
}
.exp-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(55,42,30,0.30);
}
.exp-hero__inner { }
.exp-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: 34px;
}
.exp-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 ---------- */
.exp-intro { background: var(--cream); padding: 24px 0 80px; text-align: center; }
.exp-intro__inner { max-width: 920px; margin: 0 auto; padding: 0 48px; }
.exp-intro p {
  font-size: clamp(15px,1.29vw,19px);
  line-height: 1.7;
  color: #6B6B6B;
  font-weight: 300;
}
.exp-intro p + p { margin-top: 44px; }

/* ---------- Premium Services ---------- */
.premium { background: var(--taupe); padding: 60px 0 90px; }
.premium__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  color: var(--ink);
  margin-bottom: 72px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-card {
  background: #FBF8F2;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(183,154,110,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 40px;
}
.service-card__icon svg { width: 32px; height: 32px; stroke: var(--terracotta); stroke-width: 1.6; fill: none; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink);
  margin-bottom: 16px;
}
.service-card__text {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: #6B6B6B;
  font-weight: 300;
}

/* ---------- Feature blocks (image + text) ---------- */
.exp-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;
}
.exp-feature--img-left .exp-feature__img  { order: 1; }
.exp-feature--img-left .exp-feature__text { order: 2; }

.exp-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;
}
.exp-feature__body {
  font-size: 16px;
  line-height: 1.75;
  color: #6B6B6B;
  font-weight: 300;
  margin-bottom: 40px;
}
.exp-feature__list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.exp-feature__list li {
  font-size: 16px;
  color: #6B6B6B;
  font-weight: 300;
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.exp-feature__list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}
.exp-feature__img { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.exp-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA (light, terracotta button) ---------- */
.exp-cta { background: var(--cream); padding: 33px 0 65px; text-align: center; }
.exp-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  line-height: 1.06;
  margin-bottom: 30px;
}
.exp-cta__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

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

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