/* ── Maison hero — split panel: text left, room photo right ──────────── */
.mn-hero { padding: 55px; padding-bottom: 0; }
.mn-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.mn-hero__text {
  background: var(--maison-hero-bg);
  padding: 60px clamp(32px, 6vw, 79px);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 589px;
}
.mn-hero__eyebrow {
  font-family: var(--maison-font); font-weight: 500;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #000; margin-bottom: 22px;
}
.mn-hero__heading {
  font-family: var(--maison-font); font-weight: 700;
  font-size: clamp(2.75rem, 5.2vw, 4.375rem); line-height: 1.1;
  color: #000; margin: 0 0 26px; max-width: 12ch;
}
.mn-hero__sub {
  font-size: 18px; line-height: 1.5; color: #000;
  max-width: 407px; margin: 0 0 40px;
}
.mn-hero__btn { align-self: flex-start; }

.mn-hero__media {
  position: relative; display: block;
  min-height: 589px; overflow: hidden;
  background: var(--maison-line);
}
.mn-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.mn-hero__hotspot {
  position: absolute; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; color: #ee6c2c;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.mn-plus { font-size: 22px; line-height: 1; font-weight: 400; }
.mn-hero__hotspot--1 { top: 30%; left: 26%; }
.mn-hero__hotspot--2 { top: 52%; left: 72%; }

@media (max-width: 900px) {
  .mn-hero { padding: 24px; padding-bottom: 0; }
  .mn-hero__grid { grid-template-columns: 1fr; }
  .mn-hero__text { min-height: auto; padding: 48px 28px; order: 2; }
  .mn-hero__media { min-height: 60vw; order: 1; }
  .mn-hero__heading { max-width: none; }
}
@media (max-width: 480px) {
  .mn-hero { padding: 16px; padding-bottom: 0; }
  .mn-hero__text { padding: 40px 22px; }
}
