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

:root {
 }

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

/* ---------- Our Location / map ---------- */
.loc-map { background: var(--cream); padding: 0 0 110px; text-align: center; }
.loc-map__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 56px;
}
.loc-map__frame {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}
.loc-map__inner {
  aspect-ratio: 16/7;
  background: var(--taupe);
  overflow: hidden;
}

/* ---------- What's Nearby ---------- */
.nearby { background: var(--taupe); padding: 60px 0 80px; }
.nearby__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 56px;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.nearby-col__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px,1.3vw,18px);
  color: var(--ink);
  margin-bottom: 36px;
}
.nearby-col ul { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.nearby-col li {
  font-size: 16px;
  font-weight: 300;
  color: #6B6B6B;
  line-height: 1.4;
}

/* ---------- Beyond Canggu ---------- */
.beyond { background: var(--linen); padding: 56px 0 72px; }
.beyond__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 16px;
}
.beyond__note {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #9B9B9B;
  margin-bottom: 72px;
  letter-spacing: 0.02em;
}
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 120px;
  max-width: 960px;
  margin: 0 auto;
}
.beyond-col__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px,1.3vw,18px);
  color: var(--ink);
  margin-bottom: 36px;
}
.beyond-col ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.beyond-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 16px;
  font-weight: 300;
  color: #6B6B6B;
  line-height: 1.4;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  padding-bottom: 24px;
}
.beyond-col li:last-child { border-bottom: none; padding-bottom: 0; }
.beyond-col li span:last-child {
  white-space: nowrap;
  color: var(--ink);
  font-weight: 400;
  font-size: 15px;
}
.beyond-col li em {
  font-style: normal;
  font-size: 13px;
  color: #9B9B9B;
  display: block;
  margin-top: 2px;
}

/* ---------- CTA (light, bordered button) ---------- */
.loc-cta { background: var(--cream); padding: 40px 0 90px; text-align: center; }
.loc-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: 26px;
}
.loc-cta__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  margin: 0 auto 50px;
}
.btn--loc-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,26,26,0.5);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 20px 52px;
}
.btn--loc-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; text-align: center; }
  .beyond-grid { grid-template-columns: 1fr; gap: 36px; }
  .loc-map__frame { padding: 0 20px; }
  .loc-map__inner { aspect-ratio: 4/3; }
  .nearby { padding: 40px 24px 60px; }
  .beyond { padding: 48px 24px 60px; }
}
@media (max-width: 768px) {
  .loc-hero { height: 58vh; }
  .nearby-grid { grid-template-columns: 1fr; gap: 32px; }
}

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