/* ═══ Mushrif Mall — per-outlet custom pages (mo-*) ═══ */

#biz.mo-biz {
  overflow-x: hidden;
  width: 100%;
  background: var(--mo-page-bg, var(--mo-bg, #fff));
}

.mo-page {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--mo-text, #1a1a1a);
  background: var(--mo-bg, #fff);
  box-sizing: border-box;
}

.mo-page *,
.mo-page *::before,
.mo-page *::after {
  box-sizing: border-box;
}

.mo-fab {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 12px));
  left: max(12px, env(safe-area-inset-left, 12px));
  z-index: 40;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--mo-fab-border, rgba(0,0,0,.12));
  background: var(--mo-fab-bg, rgba(255,255,255,.92));
  color: var(--mo-fab-color, #111);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.mo-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
}

.mo-title {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 6px 0;
  line-height: 1.1;
}

.mo-title--serif { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.mo-title--upper { text-transform: uppercase; letter-spacing: .08em; font-size: clamp(22px, 5vw, 32px); }

.mo-sub {
  font-size: 14px;
  line-height: 1.45;
  opacity: .8;
  margin: 0;
}

.mo-h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  text-align: center;
}

.mo-sec {
  width: 100%;
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(16px, 4vw, 48px);
}

.mo-sec--chat { padding-bottom: 32px; }

.mo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px clamp(16px, 4vw, 48px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  width: 100%;
  max-width: min(1280px, 100%);
  margin: 0 auto;
}

.mo-chips span,
.mo-chips button {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mo-chip-bg, rgba(0,0,0,.06));
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.mo-chips--light button { background: #fff; border: 1px solid #ddd; }

.mo-cta {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 12px;
}

.mo-feat-grid {
  display: grid;
  gap: clamp(10px, 1.5vw, 16px);
  grid-template-columns: repeat(2, 1fr);
}

.mo-feat-grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 600px) {
  .mo-feat-grid { grid-template-columns: repeat(3, 1fr); }
  .mo-feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .mo-feat-grid { grid-template-columns: repeat(4, 1fr); }
}

.mo-feat {
  position: relative;
  aspect-ratio: 4/5;
  border: none;
  padding: 0;
  border-radius: var(--mo-radius, 8px);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: transform .15s;
}

.mo-feat:hover { transform: translateY(-2px); }

.mo-feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mo-feat-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  background: var(--mo-tag-bg, #fff);
  color: var(--mo-tag-color, #111);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mo-feat-name {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 26px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.mo-feat-lines {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  color: rgba(255,255,255,.85);
}

.mo-feat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}

.mo-opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 14px);
  width: 100%;
}

.mo-opt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mo-opt-grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 600px) {
  .mo-opt-grid { grid-template-columns: repeat(3, 1fr); }
  .mo-opt-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .mo-opt-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .mo-opt-grid { grid-template-columns: repeat(4, 1fr); }
}

.mo-opt {
  text-align: left;
  padding: 14px 12px;
  border: 1px solid var(--mo-opt-border, #e5e5e5);
  border-radius: var(--mo-radius, 8px);
  background: var(--mo-opt-bg, #fff);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s, box-shadow .15s;
}

.mo-opt:hover {
  border-color: var(--mo-accent, #111);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.mo-opt-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 32px;
  height: 32px;
  color: var(--mo-accent, #111);
  flex-shrink: 0;
}

.mo-opt-icon svg {
  width: 100%;
  height: 100%;
}

.mo-opt-l { font-size: clamp(12px, 2vw, 14px); font-weight: 800; }
.mo-opt-d { font-size: clamp(10px, 1.8vw, 12px); opacity: .65; line-height: 1.35; }

.mo-quote {
  margin: clamp(12px, 2vw, 20px) auto;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.5;
  font-style: italic;
  max-width: min(900px, 92vw);
}

.mo-pull {
  text-align: center;
  font-style: italic;
  padding: 0 clamp(16px, 4vw, 48px) clamp(16px, 3vw, 28px);
  max-width: min(720px, 92vw);
  margin: 0 auto;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
}

/* ── Per-outlet theme tokens ── */
.mo-biz--sharaf-dg { --mo-accent: #fddb00; --mo-bg: #1c4587; --mo-text: #ffffff; --mo-fab-bg: #1c4587; --mo-fab-color: #fddb00; --mo-chip-bg: rgba(253,219,0,.2); }
.mo-biz--aldo { --mo-accent: #6b1a3a; --mo-bg: #faf6f2; --mo-text: #2a1020; }
.mo-biz--charles-keith { --mo-accent: #111; --mo-bg: #f5f0e8; --mo-radius: 0; }
.mo-biz--dune-london { --mo-accent: #c9a227; --mo-bg: #0f1a2e; --mo-text: #f0ede6; --mo-fab-bg: rgba(15,26,46,.9); --mo-fab-color: #fff; }
.mo-biz--brands-for-less { --mo-accent: #e85d04; --mo-bg: #fff5f0; }
.mo-biz--bath-body-works { --mo-accent: #c45c8a; --mo-bg: #fff8fc; --mo-radius: 20px; }
.mo-biz--ajmal-perfumes { --mo-accent: #c9a227; --mo-bg: #0d2818; --mo-text: #f0ede6; --mo-fab-bg: rgba(13,40,24,.9); --mo-fab-color: #fff; --mo-tag-bg: #c9a227; --mo-tag-color: #0d2818; }
.mo-biz--ajmal-perfumes .mo-oud-hero img {
  max-height: min(52vw, 380px);
  object-fit: cover;
  object-position: center 40%;
}
.mo-biz--ajmal-perfumes .mo-oud-tiles .mo-feat {
  min-height: clamp(160px, 32vw, 220px);
}
.mo-biz--ajmal-perfumes .mo-oud-tiles .mo-feat img {
  min-height: 120px;
  object-fit: cover;
  object-position: center;
}
.mo-biz--abdul-samad-al-qurashi { --mo-accent: #d4af37; --mo-bg: #1a0818; --mo-text: #f8f0e4; --mo-fab-bg: rgba(26,8,24,.9); --mo-fab-color: #fff; }
.mo-biz--abdul-samad-al-qurashi .mo-royal-head img {
  max-height: min(52vw, 400px);
  object-fit: cover;
  object-position: center;
}
.mo-biz--abdul-samad-al-qurashi .mo-royal-grid .mo-feat {
  min-height: clamp(150px, 30vw, 200px);
}
.mo-biz--abdul-samad-al-qurashi .mo-royal-grid .mo-feat img {
  min-height: 110px;
  object-fit: cover;
}
.mo-biz--mac-cosmetics { --mo-accent: #fff; --mo-bg: #0a0a0a; --mo-text: #fff; --mo-fab-bg: #222; --mo-fab-color: #fff; --mo-opt-bg: #1a1a1a; --mo-opt-border: #333; }
.mo-biz--mac-cosmetics .mo-studio-hero img {
  max-height: min(56vw, 420px);
  object-fit: cover;
  object-position: center 35%;
}
.mo-biz--mac-cosmetics .mo-studio-grid .mo-feat {
  min-height: clamp(180px, 36vw, 260px);
}
.mo-biz--mac-cosmetics .mo-studio-grid .mo-feat img {
  min-height: 140px;
  object-fit: cover;
}
.mo-biz--fossil { --mo-accent: #8b6914; --mo-bg: #f4efe6; }
.mo-biz--chilis { --mo-accent: #c41230; --mo-bg: #1a0508; --mo-text: #fff; --mo-fab-bg: rgba(26,5,8,.9); --mo-fab-color: #fff; }
.mo-biz--il-forno { --mo-accent: #1a6b3c; --mo-bg: #fffef8; }
.mo-biz--mcdonalds { --mo-accent: #c9a227; --mo-bg: #fff9e6; }
.mo-biz--starbucks { --mo-accent: #00704a; --mo-bg: #f4faf6; }
.mo-biz--starbucks .mo-siren-hero img {
  width: min(100%, 520px);
  height: auto;
  max-height: min(50vw, 300px);
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.mo-biz--starbucks .mo-siren-ring { display: none; }
.mo-biz--starbucks .mo-siren-cards .mo-feat {
  min-height: clamp(150px, 30vw, 200px);
}
.mo-biz--starbucks .mo-siren-cards .mo-feat img {
  min-height: 110px;
  object-fit: cover;
}
.mo-biz--tim-hortons { --mo-accent: #c8102e; --mo-bg: #fff5f5; }
.mo-biz--jollibee { --mo-accent: #e31837; --mo-bg: #fff0f2; --mo-radius: 16px; }
.mo-biz--kaya-skin-clinic { --mo-accent: #1b6b9a; --mo-bg: #f0f8fc; }

/* ── Homepage companies (detail pages) ── */
.mo-biz--emirates-nbd { --mo-accent: #c9a227; --mo-bg: #1b2d52; --mo-text: #f0ede6; --mo-fab-bg: rgba(27,45,82,.92); --mo-fab-color: #fff; --mo-opt-bg: rgba(255,255,255,.08); --mo-opt-border: rgba(255,255,255,.15); }
.mo-biz--talabat { --mo-accent: #fff; --mo-bg: #bf4e3a; --mo-text: #fff8f6; --mo-fab-bg: rgba(191,78,58,.9); --mo-fab-color: #fff; }
.mo-biz--dewa { --mo-accent: #4a4a8a; --mo-bg: #eef0ff; --mo-text: #1a1a1a; }
.mo-biz--noon { --mo-accent: #ffe600; --mo-bg: #1a1a1a; --mo-text: #f5f5f5; --mo-fab-bg: #333; --mo-fab-color: #ffe600; }
.mo-biz--etisalat { --mo-accent: #c9a227; --mo-bg: #0f1a2e; --mo-text: #f0ede6; --mo-fab-bg: rgba(15,26,46,.9); --mo-fab-color: #fff; }
.mo-biz--aramex { --mo-accent: #e85d04; --mo-bg: #1c1c1c; --mo-text: #f0ede6; --mo-fab-bg: rgba(28,28,28,.9); --mo-fab-color: #fff; }
.mo-biz--salik { --mo-accent: #0d5c52; --mo-bg: #e8faf7; --mo-text: #0a2824; }
.mo-biz--zomato { --mo-accent: #fff; --mo-bg: #bf4e3a; --mo-text: #fff8f6; --mo-fab-bg: rgba(191,78,58,.9); --mo-fab-color: #fff; }
.mo-biz--spinneys { --mo-accent: #7cb87c; --mo-bg: #2b4530; --mo-text: #f0ede6; --mo-fab-bg: rgba(43,69,48,.9); --mo-fab-color: #fff; }
.mo-biz--du { --mo-accent: #00a0e3; --mo-bg: #1d2124; --mo-text: #f0ede6; --mo-fab-bg: rgba(29,33,36,.92); --mo-fab-color: #fff; }
.mo-biz--carrefour { --mo-accent: #005baa; --mo-bg: #e8dfcc; --mo-text: #1a1a1a; }
.mo-biz--fetchr { --mo-accent: #c45c26; --mo-bg: #faf6f0; --mo-text: #2a1810; }
.mo-biz--rta { --mo-accent: #c9a227; --mo-bg: #1c1c1c; --mo-text: #f0ede6; --mo-fab-bg: rgba(28,28,28,.9); --mo-fab-color: #fff; }
.mo-biz--adcb { --mo-accent: #c9a227; --mo-bg: #3c1020; --mo-text: #f0ede6; --mo-fab-bg: rgba(60,16,32,.9); --mo-fab-color: #fff; }
.mo-biz--meraas { --mo-accent: #2d6a4f; --mo-bg: #f5f0e8; --mo-text: #1a2820; }
.mo-biz--damac { --mo-accent: #c9a227; --mo-bg: #1b2d52; --mo-text: #f0ede6; --mo-fab-bg: rgba(27,45,82,.92); --mo-fab-color: #fff; }
.mo-biz--emaar { --mo-accent: #c9a227; --mo-bg: #1b2d52; --mo-text: #f0ede6; --mo-fab-bg: rgba(27,45,82,.92); --mo-fab-color: #fff; }
.mo-biz--aster { --mo-accent: #00a5b5; --mo-bg: #004d5e; --mo-text: #f0f8fa; --mo-fab-bg: rgba(0,77,94,.9); --mo-fab-color: #fff; }
.mo-biz--malabar { --mo-accent: #d4af37; --mo-bg: #5c4a1f; --mo-text: #f5ecd7; --mo-fab-bg: rgba(92,74,31,.9); --mo-fab-color: #fff; }
.mo-biz--aster-pharmacy { --mo-accent: #00b4c8; --mo-bg: #006878; --mo-text: #f0f8fa; --mo-fab-bg: rgba(0,104,120,.9); --mo-fab-color: #fff; }
.mo-biz--hotpack { --mo-accent: #f4f8fc; --mo-bg: #978f66; --mo-text: #f4f8fc; --mo-fab-bg: rgba(80,75,50,.9); --mo-fab-color: #fff; }
.mo-biz--essence { --mo-accent: #fff; --mo-bg: #e05454; --mo-text: #fff8fc; --mo-fab-bg: rgba(224,84,84,.9); --mo-fab-color: #fff; }

/* ── Layout: tech (Sharaf DG) ── */
.mo-layout-tech .mo-tech-head {
  display: grid;
  min-height: clamp(320px, 55vw, 420px);
}
@media (min-width: 640px) {
  .mo-layout-tech .mo-tech-head { grid-template-columns: 1.1fr 1fr; }
}
.mo-tech-visual { position: relative; min-height: 220px; }
.mo-tech-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.mo-tech-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(253,219,0,.15) 1px, transparent 1px),
    linear-gradient(rgba(253,219,0,.15) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: screen;
}
.mo-tech-copy { padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; }
.mo-cta--tech { background: #fddb00; color: #1c4587; font-weight: bold; }
.mo-quote--tech { border-left: 3px solid #fddb00; background: rgba(253,219,0,.12); color: inherit; }

/* ── editorial (ALDO) ── */
.mo-ed-cover {
  min-height: clamp(360px, 65vw, 480px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.mo-ed-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(60,16,32,.88) 100%); }
.mo-ed-inner { position: relative; z-index: 1; padding: max(80px, 18vw) 24px 40px; color: #fff; }
.mo-ed-rule { display: block; width: 48px; height: 3px; background: #c9a227; margin-bottom: 16px; }
.mo-stagger { display: flex; flex-direction: column; gap: 12px; }
.mo-stagger .mo-feat { aspect-ratio: 16/7; max-width: 100%; }
.mo-stagger .mo-feat:nth-child(even) { margin-left: auto; max-width: 92%; }

/* ── geo (Charles & Keith) ── */
.mo-geo-shapes span {
  position: absolute;
  border: 2px solid #111;
  opacity: .08;
}
.mo-geo-shapes span:nth-child(1) { width: 120px; height: 120px; top: 60px; right: 10%; transform: rotate(15deg); }
.mo-geo-shapes span:nth-child(2) { width: 80px; height: 80px; top: 200px; left: 5%; border-radius: 50%; }
.mo-geo-shapes span:nth-child(3) { width: 200px; height: 2px; bottom: 40%; left: 0; right: 0; margin: auto; }
.mo-layout-geo { position: relative; }
.mo-geo-head { padding: 16px; }
.mo-geo-img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 0; }
.mo-geo-copy { padding: 16px 8px; }
.mo-geo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.mo-geo-cards .mo-feat { aspect-ratio: 1; }

/* ── luxe (Dune London) ── */
.mo-luxe-hero { position: relative; }
.mo-luxe-hero img { width: 100%; max-height: 360px; object-fit: cover; }
.mo-luxe-frame {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(15,26,46,.95));
  color: #f0ede6;
}
.mo-luxe-rule { height: 2px; background: linear-gradient(90deg, transparent, #c9a227, transparent); margin: 0 auto; max-width: 200px; }
.mo-luxe-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 520px) { .mo-luxe-row { grid-template-columns: repeat(4, 1fr); } }
.mo-quote--luxe { color: #f0ede6; background: #0f1a2e; border-left: 3px solid #c9a227; }

/* ── bazaar (Brands For Less) ── */
.mo-bazaar-banner { position: relative; padding-bottom: 20px; }
.mo-bazaar-banner img { width: 100%; max-height: 240px; object-fit: cover; }
.mo-bazaar-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e85d04;
  color: #fff;
  font-weight: 900;
  padding: 8px 14px;
  transform: rotate(3deg);
  font-size: 14px;
}
.mo-bazaar-banner .mo-title { padding: 12px 16px 0; }
.mo-bazaar-banner .mo-sub { padding: 0 16px; }
.mo-bazaar-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch;
}
.mo-bazaar-strip button {
  flex-shrink: 0;
  padding: 10px 16px;
  background: #e85d04;
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.mo-bazaar-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.mo-bazaar-mosaic .mo-feat:first-child { grid-column: 1 / -1; aspect-ratio: 21/9; }

/* ── spa (Bath & Body Works) ── */
.mo-spa-hero { position: relative; border-radius: 0 0 40px 40px; overflow: hidden; }
.mo-spa-hero img { width: 100%; max-height: 300px; object-fit: cover; }
.mo-spa-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--mo-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.mo-spa-copy { padding: 20px 20px 8px; text-align: center; }
.mo-spa-scents { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 16px 16px; font-size: 12px; color: #c45c8a; font-weight: 600; }
.mo-spa-bubbles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mo-spa-bubbles .mo-feat { border-radius: 50% 50% 12px 12px; aspect-ratio: 1; }
.mo-spa-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.mo-spa-scroll .mo-feat { flex: 0 0 140px; aspect-ratio: 3/4; }

/* ── oud-gold (Ajmal) ── */
.mo-layout-oud-gold { background: #0d2818; color: #f0ede6; }
.mo-oud-hero { text-align: center; padding: 16px; }
.mo-oud-hero img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 8px; }
.mo-oud-arch {
  width: min(90%, 400px);
  height: 40px;
  margin: -20px auto 12px;
  background: #0d2818;
  border-radius: 50% 50% 0 0;
}
.mo-oud-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── oud-royal (Al Qurashi) ── */
.mo-layout-oud-royal { background: #1a0818; color: #f8f0e4; }
.mo-royal-frame { padding: 12px; border: 1px solid rgba(212,175,55,.35); margin: 12px; border-radius: 4px; }
.mo-royal-head img { width: 100%; max-height: 260px; object-fit: cover; }
.mo-royal-head { text-align: center; padding: 12px; }
.mo-royal-gold { height: 2px; background: linear-gradient(90deg, transparent, #d4af37, transparent); margin: 12px 0; }
.mo-royal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mo-royal-quote { text-align: center; font-style: italic; padding: 16px; font-size: 14px; color: rgba(248,240,228,.9); }

/* ── studio (MAC) ── */
.mo-layout-studio { background: #0a0a0a; color: #fff; }
.mo-studio-top { padding: 56px 20px 12px; text-align: center; }
.mo-studio-hero img { width: 100%; max-height: 320px; object-fit: cover; filter: grayscale(.2) contrast(1.1); }
.mo-studio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.mo-studio-grid .mo-feat { border-radius: 0; aspect-ratio: 1; }
.mo-h2--white { color: #fff; }
.mo-opt-grid--dark .mo-opt { background: #1a1a1a; border-color: #333; color: #fff; }

/* ── heritage (Fossil) ── */
.mo-heritage-banner { display: grid; gap: 0; }
@media (min-width: 560px) {
  .mo-heritage-banner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.mo-heritage-photo { width: 100%; min-height: 240px; object-fit: cover; filter: sepia(.25); }
.mo-heritage-plaque { padding: 24px; background: #e8dfd0; }
.mo-heritage-showcase { display: flex; gap: 10px; overflow-x: auto; }
.mo-heritage-showcase .mo-feat { flex: 0 0 45%; aspect-ratio: 4/5; }

/* ── diner (Chili's) ── */
.mo-layout-diner {
  background: repeating-linear-gradient(90deg, #1a0508 0, #1a0508 20px, #220608 20px, #220608 40px);
  color: #fff;
}
.mo-diner-sign { text-align: center; padding: 56px 16px 16px; }
.mo-diner-sign .mo-title { color: #ffb347; text-shadow: 2px 2px 0 #c41230; }
.mo-diner-plate {
  width: min(100%, 400px);
  margin: 16px auto 0;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid #c41230;
}
.mo-diner-chalk {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 13px;
}
.mo-diner-menu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── trattoria (IL Forno) ── */
.mo-trat-head { text-align: center; padding: 52px 16px 20px; }
.mo-trat-stripe {
  height: 8px;
  background: repeating-linear-gradient(90deg, #1a6b3c 0, #1a6b3c 24px, #fff 24px, #fff 48px, #c41230 48px, #c41230 72px);
  margin-bottom: 16px;
}
.mo-trat-pizza {
  width: min(100%, 360px);
  margin: 12px auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.mo-trat-plates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mo-trat-plates .mo-feat { border-radius: 50% 50% 8px 8px; }

/* ── fast-gold (McDonald's) ── */
.mo-mcd-strip {
  text-align: center;
  padding: 56px 16px 20px;
  background: linear-gradient(180deg, #c9a227 0%, #fff9e6 70%);
}
.mo-mcd-arc {
  display: block;
  width: 80px;
  height: 40px;
  border: 8px solid #c41230;
  border-bottom: none;
  border-radius: 80px 80px 0 0;
  margin: 0 auto 8px;
}
.mo-mcd-hero-img {
  width: min(100%, 520px);
  max-height: min(52vw, 320px);
  margin: 12px auto 0;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  max-height: 200px;
}
.mo-mcd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
}

/* ── siren (Starbucks) ── */
.mo-siren-hero {
  position: relative;
  text-align: center;
  padding: 56px 16px 24px;
  background: #f4faf6;
}
.mo-siren-ring {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border: 6px solid #00704a;
  border-radius: 50%;
  opacity: .25;
}
.mo-siren-hero img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 4px solid #00704a;
}
.mo-siren-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── tim (Tim Hortons) ── */
.mo-tim-head { text-align: center; padding: 52px 16px 16px; position: relative; }
.mo-tim-maple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, #c8102e 0, #c8102e 40px, #fff 40px, #fff 80px);
}
.mo-tim-cup {
  width: min(100%, 320px);
  margin: 12px auto;
  border-radius: 12px;
  max-height: 220px;
  object-fit: cover;
}
.mo-tim-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ── jolly (Jollibee) ── */
.mo-jolly-burst {
  text-align: center;
  padding: 56px 16px 8px;
  background: radial-gradient(circle at 50% 0%, #ffe0e6 0%, #fff0f2 50%);
}
.mo-jolly-burst img {
  width: min(100%, 360px);
  margin: 12px auto;
  border-radius: 24px;
  object-fit: cover;
  max-height: 220px;
  border: 4px solid #e31837;
}
.mo-jolly-dots {
  height: 24px;
  background-image: radial-gradient(#e31837 20%, transparent 20%);
  background-size: 16px 16px;
  opacity: .4;
  margin: 8px 0;
}
.mo-jolly-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mo-jolly-grid .mo-feat { border-radius: 16px; }

/* ── clinic (Kaya) ── */
.mo-clinic-hero {
  display: grid;
  min-height: 280px;
}
@media (min-width: 560px) {
  .mo-clinic-hero { grid-template-columns: 1fr 1fr; }
}
.mo-clinic-hero img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.mo-clinic-panel {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.mo-cta--clinic { background: #1b6b9a; color: #fff; border-radius: 8px; }
.mo-clinic-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #1b6b9a;
  text-transform: uppercase;
}
.mo-clinic-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mo-clinic-cards .mo-feat { aspect-ratio: 5/4; border-radius: 12px; }

/* ═══ Responsive — full-width web & tablet ═══ */
@media (min-width: 768px) {
  .mo-title { font-size: clamp(36px, 4vw, 52px); }
  .mo-h2 { font-size: clamp(20px, 2.2vw, 26px); }

  .mo-layout-tech .mo-tech-head {
    min-height: clamp(380px, 42vw, 520px);
    grid-template-columns: 1.15fr 1fr;
  }

  .mo-tech-visual img { min-height: 100%; }

  .mo-ed-cover { min-height: clamp(420px, 50vw, 560px); }

  .mo-luxe-hero img { max-height: clamp(360px, 45vw, 520px); }

  .mo-bazaar-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .mo-bazaar-mosaic .mo-feat:first-child { grid-column: span 2; }

  .mo-spa-bubbles { grid-template-columns: repeat(4, 1fr); }

  .mo-oud-tiles,
  .mo-royal-grid,
  .mo-diner-menu,
  .mo-trat-plates,
  .mo-siren-cards,
  .mo-tim-row,
  .mo-jolly-grid,
  .mo-clinic-cards,
  .mo-geo-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .mo-luxe-row { grid-template-columns: repeat(4, 1fr); }

  .mo-heritage-banner { grid-template-columns: 1.1fr 1fr; }

  .mo-heritage-showcase .mo-feat { flex: 0 0 calc(25% - 8px); }

  .mo-studio-grid { grid-template-columns: repeat(4, 1fr); }

  .mo-stagger { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .mo-stagger .mo-feat { aspect-ratio: 16/9; max-width: none; margin: 0; }
}

@media (min-width: 1024px) {
  .mo-fab { width: 46px; height: 46px; }

  .mo-opt { min-height: 112px; padding: 16px 14px; }

  .mo-opt-icon { width: 36px; height: 36px; }

  .mo-siren-hero img {
    width: clamp(180px, 14vw, 220px);
    height: clamp(180px, 14vw, 220px);
  }

  .mo-clinic-hero { min-height: 360px; }
}

@media (min-width: 1280px) {
  .mo-sec { max-width: 1280px; }
}

/* Shared SVG icon sizing (mo-icons.js) */
.mo-opt-icon,
.ip-tile-icon,
.opt-icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opt-icon--svg {
  width: clamp(28px, 4vw, 36px);
  height: clamp(28px, 4vw, 36px);
  margin-bottom: clamp(8px, 2vw, 12px);
  color: #c9a227;
}

.opt-icon--svg svg {
  width: 100%;
  height: 100%;
}
